diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3a41a3e..f51d118 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,23 +6,22 @@ import "@/lib/gsap-setup"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; +import { Montserrat } from "next/font/google"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); export const metadata: Metadata = { - title: 'The Gilded Key | Luxury Real Estate', - description: 'Unlock exclusive luxury homes and estates. The Gilded Key offers bespoke real estate services for discerning clients seeking unparalleled properties.', + title: 'Nashville Roofing Services | Trusted Local Roofing Experts', + description: 'Protecting homes and businesses across Nashville with superior roofing solutions, exceptional craftsmanship, and reliable service. Get a free quote today!', }; +const montserrat = Montserrat({ + variable: "--font-montserrat", subsets: ["latin"], +}); +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -31,9 +30,7 @@ export default function RootLayout({ return ( - + {children}