From 275c6a4b3d8f205ed12a820a9d32198e4d37427d Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 20:47:09 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 53 +++++++++++++++++++--------------------------- 1 file changed, 22 insertions(+), 31 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e1e0bc5..f53ea19 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,50 +1,42 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Inter_Tight } 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"], -}); +import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper"; +import { Tag } from "@/components/common/Tag"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); -const interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); - export const metadata: Metadata = { - title: "BG Plumbing - 24/7 Emergency Plumbing Services in Redwood City", description: "Licensed, insured plumbing company in Redwood City, CA. 4.9★ rated. Emergency services 24/7. Leak detection, water heaters, drain cleaning & more. Call (650) 481-5943.", keywords: "plumbing redwood city, emergency plumber, 24 hour plumbing, water heater repair, leak detection, drain cleaning, licensed plumber", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "BG Plumbing - Professional 24/7 Emergency Services", description: "Expert licensed plumbing company serving Redwood City. 4.9★ rated with 200+ reviews. Fast, clean, professional service.", url: "https://bgplumbing.com", siteName: "BG Plumbing", type: "website"}, - twitter: { - card: "summary_large_image", title: "BG Plumbing - 24/7 Emergency Plumbing Services", description: "Licensed plumbers in Redwood City. Emergency repairs, installations & maintenance. Call (650) 481-5943."}, + title: "BG Plumbing - Professional Plumbing Services 24/7", description: "Licensed, insured, and bonded plumbing experts serving Redwood City. Fast, clean, and reliable solutions for all your residential and commercial plumbing needs. Emergency services available 24/7.", keywords: "plumbing, plumber, Redwood City, emergency plumbing, water heater, drain cleaning, leak repair", openGraph: { + title: "BG Plumbing - Professional Plumbing Services 24/7", description: "Licensed, insured, and bonded plumbing experts serving Redwood City. Fast, clean, and reliable solutions.", type: "website"}, }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - + +