From 0f741968950ab12db3e90baad747b79a5cb2d631 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 00:15:51 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 73 +++++++++------------------------------------- 1 file changed, 13 insertions(+), 60 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 608c1d7..d4270eb 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,74 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Nunito } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const nunito = Nunito({ - variable: "--font-nunito", - subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Roof Repair & Replacement Burleson TX | Expert Roofing Services", - description: "Texas Best Roofing Solutions: Expert roof repair, replacement & storm damage specialists serving Burleson, Fort Worth, Arlington. Free inspections, insurance claim help. 4.9★ rated.", - keywords: "roof repair Burleson TX, roof replacement Fort Worth, storm damage roofing, roofing contractor DFW, free roof inspection", - metadataBase: new URL("https://texasbestroofingsolutions.com"), - alternates: { - canonical: "https://texasbestroofingsolutions.com", - }, - openGraph: { - title: "Expert Roofing Solutions for Burleson & DFW", - description: "Free roof inspections, insurance claim specialists, storm damage repair. Licensed & insured. 4.9★ rating.", - url: "https://texasbestroofingsolutions.com", - siteName: "Texas Best Roofing Solutions", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/long-shot-men-working-together_23-2149343675.jpg", - alt: "Professional roofing crew", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Expert Roofing Contractor - Burleson TX", - description: "Get a free roof inspection from Texas Best Roofing Solutions. Insurance claim specialists.", - images: ["http://img.b2bpic.net/free-photo/long-shot-men-working-together_23-2149343675.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Texas Best Roofing Solutions - Expert Roof Repair & Replacement in Burleson, TX", description: "Professional roofing services in Burleson, TX. Free inspections, storm damage repair, insurance claims assistance. 4.9★ rating with 67+ reviews. Licensed & Insured."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +