From 3730e7b5c0d8496a642001789f81b5b336f7e24d Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 15:37:24 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5a0894f..fe594a4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,8 +1,11 @@ import type { Metadata } from "next"; -import "./globals.css"; +import { Inter } from "next/font/google"; +import "@/styles/globals.css"; + +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Maggie Roofing Contractors | Professional Roofing Services", description: "Reliable roofing solutions for residential and commercial properties. Quality craftsmanship, honest pricing, and expert service."}; + title: "Maggie Roofing Contractors | Professional Roofing Services", description: "Professional residential and commercial roofing services with quality craftsmanship and honest pricing."}; export default function RootLayout({ children, @@ -11,9 +14,7 @@ export default function RootLayout({ }) { return ( - - {children} - + {children}