From 4e34f893c8ad0c68798ca60661ee024266d3f3b0 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 08:07:30 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 38 ++++++-------------------------------- 1 file changed, 6 insertions(+), 32 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index fcf661e..3a509d6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,45 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { DM_Sans } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Apartment Cleaning & Unit Turns Dallas–Fort Worth | Bradley's", description: "Professional apartment unit turn and move-out cleaning services for Dallas–Fort Worth. Insured, reliable cleaning for property managers and homeowners. Free quote today.", keywords: "apartment cleaning Dallas, move-out cleaning DFW, apartment unit turns, property manager cleaning services, apartment turnover cleaning, residential cleaning Dallas Fort Worth", openGraph: { - title: "Apartment Unit Turns & Move-Out Cleaning in Dallas–Fort Worth", description: "Professional, insured cleaning services for apartment complexes and residential properties. Fast turnaround, trusted by property managers.", siteName: "Bradley's Cleaning Service", type: "website"}, - twitter: { - card: "summary_large_image", title: "Apartment Cleaning Services Dallas–Fort Worth", description: "Unit turns, move-out cleaning, and recurring services. Call 945-201-1732 for free quote."}, -}; + 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."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}