From 4bcfe92f832da957b93cfa16d2922f1ffebeb0bc Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 22:12:57 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 1411 +------------------------------------------- 1 file changed, 11 insertions(+), 1400 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 745ec95..b520e7a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1415 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Archivo } 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 archivo = Archivo({ - variable: "--font-archivo", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Dallas Plumbing Pros | 24/7 Emergency Plumbing Services", description: "Expert plumbing services in Dallas. 24/7 emergency response, water heater installation, drain cleaning, and maintenance. Licensed, insured, and trusted since 2010.", keywords: "plumbing Dallas, emergency plumber, water heater repair, drain cleaning, burst pipe repair", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Dallas Plumbing Pros | Emergency Plumbing Services", description: "24/7 emergency plumbing response in Dallas. Expert technicians, transparent pricing, guaranteed satisfaction.", type: "website", siteName: "Dallas Plumbing Pros", url: "https://www.dallasplumbingpros.com"}, - twitter: { - card: "summary_large_image", title: "Dallas Plumbing Pros", description: "Professional plumbing services in Dallas"}, -}; + title: "Dallas Plumbing Pros", description: "Emergency Plumbing Services When You Need Them Most"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -