Files
hms-licht-ton/frontend/layouts/default.vue

15 lines
350 B
Vue
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<template>
<div class="min-h-screen flex flex-col">
<a href="#main-content" class="skip-link">Zum Hauptinhalt springen</a>
<AppHeader />
<main id="main-content" class="flex-1" role="main">
<slot />
</main>
<AppFooter />
</div>
</template>
<script setup lang="ts">
// Default layout Header + Main + Footer
</script>