chore: commit pending changes (wrap pages in NuxtLayout, update ignores)

This commit is contained in:
2025-08-16 09:37:10 -06:00
parent 9642bfba10
commit eff9aa55cf
2 changed files with 4 additions and 1 deletions

1
.gitignore vendored
View File

@@ -22,3 +22,4 @@ logs
.env
.env.*
!.env.example
.vercel

View File

@@ -1,6 +1,8 @@
<template>
<div>
<NuxtRouteAnnouncer />
<NuxtPage />
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</div>
</template>