Implement everything

This commit is contained in:
MarcUs7i 2025-03-23 23:04:02 +01:00
parent d966dd9562
commit 30d747e046
26 changed files with 1069 additions and 6 deletions

9
layouts/default.vue Normal file
View file

@ -0,0 +1,9 @@
<template>
<div class="min-h-screen flex flex-col">
<NavBar />
<main class="flex-grow container mx-auto px-4 py-8">
<slot />
</main>
<AppFooter />
</div>
</template>