From 7a434179f4995741281661823a0725d2d777c4f5 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 02:13:13 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1438 +------------------------------------------- 1 file changed, 8 insertions(+), 1430 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5e5a110..d28cdc0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1441 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Nunito } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "../styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const nunito = Nunito({ - variable: "--font-nunito", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "24/7 Emergency Plumber Toronto | Same-Day Service", - description: "Licensed & insured Toronto plumber offering 24/7 emergency service. Same-day repairs, burst pipes, drain cleaning. Serving Etobicoke & GTA. Call (416) 879-2050.", - keywords: "Toronto plumber, emergency plumber, Etobicoke plumbing, 24 hour plumber, drain cleaning Toronto, burst pipe repair", - metadataBase: new URL("https://pipewrencher.ca"), - alternates: { - canonical: "https://pipewrencher.ca", - }, - openGraph: { - title: "24/7 Emergency Plumber in Toronto | The Pipe Wrenchers", - description: "Licensed & insured. Same-day service. Trusted by 500+ homeowners. Call now for emergency plumbing help.", - url: "https://pipewrencher.ca", - siteName: "The Pipe Wrenchers", - type: "website", - images: [ - { - url: "https://pipewrencher.ca/og-image.jpg", - alt: "The Pipe Wrenchers - Emergency Plumber Toronto", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "24/7 Emergency Plumber Toronto", - description: "Licensed, insured, same-day service. Call (416) 879-2050.", - images: ["https://pipewrencher.ca/twitter-image.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "The Pipe Wrenchers - 24/7 Emergency Plumber Toronto", description: "Licensed & insured emergency plumber in Toronto. 24/7 service, same-day repairs, 500+ satisfied customers. Call (416) 879-2050."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -