From 1e1685b0b056a291c43097921e7951869017430d Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 19:41:10 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++----------------------------------------- 1 file changed, 6 insertions(+), 49 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index da9a33d..73ee77c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,17 @@ import type { Metadata } from "next"; -import { Inter_Tight } from "next/font/google"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +import "./styles/globals.css"; export const metadata: Metadata = { - title: "Richmond Hill Plumbing | Actual Blue Plumbing", description: "5-star rated residential plumbing services in Richmond Hill, Ontario. Transparent pricing, fast response, and meticulous workmanship. Call (647) 924-9029.", keywords: "plumber Richmond Hill, plumbing repair, leak repair, garbage disposal, shut-off valve, York Region", metadataBase: new URL("https://actualblueplumbing.com"), - alternates: { - canonical: "https://actualblueplumbing.com"}, - openGraph: { - title: "Richmond Hill's Most Trusted Plumbing Experts", description: "5-Star Rated Residential Plumbing Services with Transparent Pricing", url: "https://actualblueplumbing.com", siteName: "Actual Blue Plumbing", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/asian-plumber-blue-overalls-clearing-blockage-drain_1098-17773.jpg", alt: "Professional plumber working on residential plumbing"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Richmond Hill's Most Trusted Plumbing Experts", description: "5-Star Rated Residential Plumbing Services", images: [ - "http://img.b2bpic.net/free-photo/asian-plumber-blue-overalls-clearing-blockage-drain_1098-17773.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Actual Blue Plumbing | Richmond Hill's Trusted Plumber", description: "Professional plumbing services in Richmond Hill, Markham, and York Region. 5-star rated, transparent pricing, and meticulous workmanship. Call (647) 924-9029 for fast service."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}