From 25276fa28d750d8c55d239f7797d073834a37f6d Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 03:06:45 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) 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} +