diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 76b7b5d..875b8a2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,8 +1,17 @@ import type { Metadata } from "next"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], +}); + +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], +}); + export const metadata: Metadata = { - title: "BlasaCar - Ride Sharing for Morocco", description: "Skip the WhatsApp chaos. Book rides in seconds."}; + title: "BlasaCar - Skip the WhatsApp Chaos. Book Rides in Seconds.", description: "BlasaCar connects drivers and passengers traveling between Moroccan cities. Instant booking, transparent pricing, and verified travelers."}; export default function RootLayout({ children, @@ -11,7 +20,9 @@ export default function RootLayout({ }) { return ( - {children} + + {children} +