From 0878c54dc0a5cc11d125da988bd11e05d6070d8e Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 09:11:32 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 35 ++++++++++++++++++++++++----------- 1 file changed, 24 insertions(+), 11 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index fb8169d..4ea4d7b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,13 +1,17 @@ import type { Metadata } from "next"; -import { Inter } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/providers/ServiceWrapper"; -import { Tag } from "@/components/Tag"; -const inter = Inter({ variable: "--font-inter", 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: "ProRoof - Expert Roofing Solutions", description: "Trusted roofing contractors delivering premium quality installations, repairs, and maintenance. Over 20 years of excellence protecting families and businesses."}; + title: "ProRoof - Expert Roofing Solutions", description: "Professional roofing contractors delivering premium quality installations, repairs, and maintenance. Over 20 years of excellence protecting families and businesses."}; export default function RootLayout({ children, @@ -16,12 +20,21 @@ export default function RootLayout({ }) { return ( - - - - {children} - - + +