wip
Some checks failed
Build and Deploy / build-and-deploy (push) Has been cancelled

This commit is contained in:
2026-03-24 13:12:38 -04:00
parent 5121ba1852
commit e2c41561da
9 changed files with 37 additions and 24 deletions

View File

@@ -4,6 +4,7 @@ import { getCollection } from 'astro:content';
import { getLocale } from '@/lib/locale';
import SEOHead from '@/components/seo-head.astro';
import Header from '@/components/header';
import Footer from '@/components/footer.astro';
interface Props {
title?: string;
@@ -40,5 +41,6 @@ const navigationItems = nav.links.map((link) => ({ name: link.name, href: link.h
<main id="main-content">
<slot />
</main>
<Footer />
</body>
</html>