feat(02-02): create AppFooter, default layout, update app.vue with useLocaleHead

- AppFooter with copyright + Gitea/LinkedIn/Fiverr social icons (rel=noopener noreferrer)
- Default layout wraps header + slot + footer with min-h-screen flex
- app.vue uses NuxtLayout + useLocaleHead for global hreflang/canonical
- Fixed a11y.github -> a11y.gitea in both locale files
This commit is contained in:
2026-04-08 16:26:14 +02:00
parent 61925c3c4d
commit c320085435
5 changed files with 50 additions and 5 deletions
+9
View File
@@ -0,0 +1,9 @@
<template>
<div class="min-h-screen flex flex-col">
<AppHeader />
<main class="flex-1">
<slot />
</main>
<AppFooter />
</div>
</template>