From 591946ba243cc8d146e2d67383cda0c5a05d458c Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 21:43:59 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1427 -------------------------------------------- 1 file changed, 1427 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 014a8f8..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1427 +0,0 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Public_Sans } 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 publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "Coastal Plumbing & Mechanical | Expert Plumbing Services 24/7", description: "Professional plumbing and mechanical services for residential and commercial properties. Emergency repairs, maintenance, and installation available 24/7.", keywords: "plumbing, emergency plumbing, plumber, repairs, installation, maintenance, 24/7 service", metadataBase: new URL("https://coastalplumbing.com"), - alternates: { - canonical: "https://coastalplumbing.com" - }, - openGraph: { - title: "Coastal Plumbing & Mechanical | Expert Plumbing Services", description: "Professional plumbing services available 24/7. Fast response times, licensed technicians, transparent pricing.", url: "https://coastalplumbing.com", siteName: "Coastal Plumbing & Mechanical Corporation", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/female-plumber-working-fix-problems-client-s-house_23-2150990725.jpg", alt: "Professional plumbing services" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Coastal Plumbing & Mechanical", description: "Expert plumbing services 24/7. Call for emergency repairs and maintenance.", images: ["http://img.b2bpic.net/free-photo/female-plumber-working-fix-problems-client-s-house_23-2150990725.jpg"] - }, - robots: { - index: true, - follow: true - } -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -