15 lines
405 B
Vue
15 lines
405 B
Vue
|
|
<template>
|
|||
|
|
<div class="min-h-screen flex flex-col bg-bg text-text">
|
|||
|
|
<a href="#main-content" class="skip-link">Zum Hauptinhalt springen</a>
|
|||
|
|
<AppHeader />
|
|||
|
|
<main id="main-content" class="flex-1 w-full max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-6">
|
|||
|
|
<slot />
|
|||
|
|
</main>
|
|||
|
|
<AppFooter />
|
|||
|
|
</div>
|
|||
|
|
</template>
|
|||
|
|
|
|||
|
|
<script setup lang="ts">
|
|||
|
|
// Default layout – Header + Main + Footer
|
|||
|
|
</script>
|