Files
web_server/nginx/vue/src/views/home/Links.vue
Adam French 8a9f3c373d
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 1m27s
Update links
2026-02-23 14:23:43 +00:00

31 lines
972 B
Vue

<script setup>
import RouterTable from "@/components/util/RouterTable.vue";
import LinkTable from "@/components/util/LinkTable.vue";
const site_links = [
{ name: "CV", link: "/cv" },
{ name: "Bookmarks", link: "/bookmarks" },
{ name: "Notes", link: "/notes/Index.md" },
{ name: "Admin", link: "/admin" },
// { name: "Shrines", link: "/shrines" },
];
const social_links = [
{ name: "Gitea", link: "/gitea/explore/repos" },
{ name: "Steam", link: "https://steamcommunity.com/id/SteveThePug" },
{ name: "Github", link: "https://github.com/SteveThePug" },
{ name: "Spotify", link: "https://open.spotify.com/user/stevethepug" },
];
</script>
<template>
<div class="flex flex-col justify-between">
<div class="flex flex-col gap-1">
<RouterTable :linkArr="site_links" />
</div>
<div class="flex flex-col gap-1">
<LinkTable :linkArr="social_links" />
</div>
</div>
</template>