diff --git a/frontend/src/app/layout.tsx b/frontend/src/app/layout.tsx index 976eb90..e7522b3 100644 --- a/frontend/src/app/layout.tsx +++ b/frontend/src/app/layout.tsx @@ -1,6 +1,8 @@ import type { Metadata } from "next"; import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; +import { AuthProvider } from "@/lib/auth-context"; +import { Navigation } from "@/components/navigation"; const geistSans = Geist({ variable: "--font-geist-sans", @@ -13,8 +15,8 @@ const geistMono = Geist_Mono({ }); export const metadata: Metadata = { - title: "Create Next App", - description: "Generated by create next app", + title: "RacePlanner - Event Management", + description: "Plan and manage race events", }; export default function RootLayout({ @@ -27,7 +29,14 @@ export default function RootLayout({ lang="en" className={`${geistSans.variable} ${geistMono.variable} h-full antialiased`} > -
{children} + +