Contact + Login

This commit is contained in:
cdricms
2025-01-13 13:48:35 +01:00
parent 7813e42e3a
commit 462594b222
13 changed files with 3283 additions and 2505 deletions

View File

@@ -2,6 +2,7 @@ import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import Navbar from "@/components/nav-bar";
import Footer from "@/components/footer";
const geistSans = Geist({
variable: "--font-geist-sans",
@@ -30,6 +31,7 @@ export default function RootLayout({
>
<Navbar />
{children}
<Footer />
</body>
</html>
);