All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 4m58s
Move Vue app from nginx/vue/ to top-level vue/ with its own Dockerfile, update docker-compose configs and nginx proxy to serve from the new container, and add initial Rust WASM crate (stp_wasm). Also fix .gitignore to exclude Rust target/ directories. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
31 lines
970 B
Vue
31 lines
970 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 :items="social_links" />
|
|
</div>
|
|
</div>
|
|
</template>
|