From 7c2ada5ba1086b19d73255859918679d22a4b230 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 08:28:01 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3a509d6..978f3ef 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,11 +1,17 @@ import type { Metadata } from "next"; -import { Inter } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -const inter = 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: "Bradley's Cleaning Service | DFW Apartment & Move-Out Cleaning", description: "Professional apartment unit turn and move-out cleaning services in Dallas-Fort Worth. Fast turnaround, insured, detail-oriented. Free quote available."}; + title: "Bradley's Cleaning Service | Professional Apartment & Move-Out Cleaning in DFW", description: "Reliable, insured apartment unit turn and move-out cleaning services in Dallas–Fort Worth. Fast turnaround, detail-oriented, serving property managers and homeowners."}; export default function RootLayout({ children, @@ -14,7 +20,9 @@ export default function RootLayout({ }) { return ( - {children} + + {children} +