This commit is contained in:
Bastian Masanek
2025-10-30 08:24:44 +01:00
commit 6e50ec7034
73 changed files with 27355 additions and 0 deletions

18
app/layouts/default.vue Normal file
View File

@@ -0,0 +1,18 @@
<script setup lang="ts">
// Default layout with Header and Footer components
</script>
<template>
<div class="min-h-screen flex flex-col">
<!-- Header -->
<CommonHeader />
<!-- Main content -->
<main class="flex-1">
<slot />
</main>
<!-- Footer -->
<CommonFooter />
</div>
</template>