feat: Initial layout with SiteHeader / SiteFooter

This commit is contained in:
2026-01-13 09:05:31 -05:00
parent ca2e660c05
commit 3d7a2b2ef6
8 changed files with 54 additions and 9 deletions

View File

@@ -1,8 +1,13 @@
<script setup lang="ts">
import { fr } from "@nuxt/ui/locale";
</script>
<template>
<div id="layout-default">
<NuxtPage />
</div>
<UApp id="layout-default" :locale="fr">
<SiteHeader />
<UMain>
<slot />
</UMain>
<SiteFooter />
</UApp>
</template>