From e38a80defae1a0dd272b0f4cce38aa7f17cf6bf2 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 19:43:12 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 56 ++++++++++------------------------------------ 1 file changed, 12 insertions(+), 44 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1268fe0..f61fe19 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,28 @@ import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; -import { Halant } from "next/font/google"; -import { Inter } 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 dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "24/7 Emergency Plumbing Colorado Springs | M.D. Service Plumbing", description: "Professional plumbing services in Colorado Springs. 24/7 emergency response, water heater repair, leak detection. Licensed, insured, 4.9★ rated. Call (719) 648-9086.", keywords: "plumber Colorado Springs, emergency plumbing, water heater repair, leak detection, 24/7 plumber, plumbing services", metadataBase: new URL("https://mdserviceplumbing.com"), - alternates: { - canonical: "https://mdserviceplumbing.com" - }, - openGraph: { - title: "24/7 Emergency Plumbing Colorado Springs", description: "Fast response. Fair pricing. Quality work you can count on. Call M.D. Service Plumbing today.", url: "https://mdserviceplumbing.com", siteName: "M.D. Service Plumbing", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/combine-machine-service_146671-19098.jpg", alt: "M.D. Service Plumbing - Professional plumbing services" - } - ] - }, - twitter: { - card: "summary_large_image", title: "24/7 Emergency Plumbing Colorado Springs", description: "Fast response. Fair pricing. Quality work. Call (719) 648-9086.", images: ["http://img.b2bpic.net/free-photo/combine-machine-service_146671-19098.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "M.D. Service Plumbing - 24/7 Emergency Plumbing in Colorado Springs", description: "Fast, reliable plumbing services in Colorado Springs. 24/7 emergency response, same-day service, and fair pricing. 4.9★ rated."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +