diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6a348e0..181dd57 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,13 +1,17 @@ import type { Metadata } from "next"; -import { Raleway } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -const raleway = Raleway({ - variable: "--font-raleway", subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], +}); + +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Local Pro Services - Trusted Home Service Experts", description: "Fast, reliable home service from licensed professionals. 24/7 emergency service available."}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, @@ -16,7 +20,9 @@ export default function RootLayout({ }) { return ( -
{children} + + {children} +