ui/ create footer component

This commit is contained in:
Leon van Zyl
2025-08-17 09:51:17 +02:00
parent 8a65a51f2d
commit ce92f0ce26
4 changed files with 142 additions and 138 deletions

View File

@@ -3,6 +3,7 @@ import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import { SiteHeader } from "@/components/site-header";
import { SiteFooter } from "@/components/site-footer";
const geistSans = Geist({
variable: "--font-geist-sans",
@@ -38,6 +39,7 @@ export default function RootLayout({
>
<SiteHeader />
{children}
<SiteFooter />
</ThemeProvider>
</body>
</html>