This commit is contained in:
2026-08-08 23:51:05 +02:00
commit bb7a17a874
73 changed files with 15038 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
<script setup lang="ts">
import { Card } from '@3ba/vue';
import Footer from "./components/Footer.vue";
</script>
<template>
<main>
<router-view v-slot="{ Component,route }">
<component :is="Component" />
</router-view>
</main>
<Footer>Scott 0-val</Footer>
</template>