moved home components

This commit is contained in:
2026-02-09 14:41:28 +00:00
parent 5de67fdf58
commit 505509a4d2
11 changed files with 10 additions and 10 deletions

View File

@@ -0,0 +1,21 @@
<script setup>
import Header from "@/components/text/Header.vue";
import OptionalLinkTable from "@/components/util/OptionalLinkTable.vue";
import AutoScroll from "@/components/util/AutoScroll.vue";
import { useFavoritesStore } from "@/stores/favorites";
const favoritesStore = useFavoritesStore();
</script>
<template>
<div class="flex flex-col items-center">
<Header>favs</Header>
<AutoScroll class="w-full flex-1">
<OptionalLinkTable
class="w-full"
:data="favoritesStore.favorites"
/>
</AutoScroll>
</div>
</template>