diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 30b7231..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1417 +0,0 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Source_Sans_3 } 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 sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "Emergency Plumbing & Gas Fitting | FastFlow Plumbing Services", description: "Licensed plumbing & gas fitting professionals offering 24/7 emergency service, same-day response, and upfront pricing. Trusted local service provider.", keywords: "plumbing services, emergency plumber, gas fitting, 24/7 plumber, licensed plumber, local plumbing", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Emergency Plumbing & Gas Fitting | FastFlow Plumbing", description: "Professional plumbing & gas fitting services available 24/7 with same-day emergency response.", type: "website", siteName: "FastFlow Plumbing"}, - twitter: { - card: "summary_large_image", title: "Emergency Plumbing & Gas Fitting | FastFlow Plumbing", description: "Licensed professionals offering 24/7 emergency plumbing and gas fitting services."}, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -