From 9a2e4e590d8aca943e8fcac9e7a2440ac13d6d38 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 14:34:45 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 68 +++++----------------------------------------- 1 file changed, 7 insertions(+), 61 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3c7db54..e5c0d2b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,73 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Manrope } 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 manrope = Manrope({ - variable: "--font-manrope", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Emergency Plumber Toronto | Magnum Plumbing & Gas", - description: "24/7 emergency plumbing services in Toronto. Fast response, fair pricing, 100+ 5-star reviews. Licensed professionals for all your plumbing needs.", - keywords: "emergency plumber Toronto, plumbing services, drain cleaning, water heater repair, gas line repair", - metadataBase: new URL("https://magnumplumbing.ca"), - alternates: { - canonical: "https://magnumplumbing.ca", - }, - openGraph: { - title: "Emergency Plumber Toronto | Magnum Plumbing & Gas", - description: "Fast, reliable plumbing service from trusted professionals. 24/7 emergency response available.", - siteName: "Magnum Plumbing and Gas", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/portrait-attractive-hispanic-handyman-writing-work-estimate-before-fixing-kitchen-sink_662251-2690.jpg", - alt: "Professional plumber at work", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Emergency Plumber Toronto | Magnum Plumbing & Gas", - description: "24/7 emergency plumbing services. Fast response, fair pricing, trusted by 100+ Toronto customers.", - images: ["http://img.b2bpic.net/free-photo/portrait-attractive-hispanic-handyman-writing-work-estimate-before-fixing-kitchen-sink_662251-2690.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Magnum Plumbing & Gas - Emergency Plumbing Services in Toronto", description: "24/7 emergency plumbing and gas services in Toronto. Fast response, licensed professionals, 100+ five-star reviews."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}