diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2d7d47a..1f15256 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1414 +1,35 @@ import type { Metadata } from "next"; -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"; +import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper"; +import { Tag } from "@/components/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 inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Roof Leak Repair & Plumbing Services | Raincheck", description: "Fast, honest roof plumbing services for leak detection, gutter repairs, and drainage. Local trusted roofer with same-day emergency response.", keywords: "roof leak repair, roof plumber, gutter repairs, downpipe services, roof plumbing, emergency roof leak, roof tile repair, local roofer", metadataBase: new URL("https://raincheckreof.com"), - alternates: { - canonical: "https://raincheckreof.com" - }, - openGraph: { - title: "Raincheck Roof Plumbing - Fast Leak Detection & Repair", description: "Got a leak? We'll beat the rain. Fast, honest roof plumbing services with same-day emergency response.", url: "https://raincheckreof.com", siteName: "Raincheck Roof Plumbing", type: "website" - }, - twitter: { - card: "summary_large_image", title: "Raincheck Roof Plumbing - Emergency Leak Repair", description: "Fast, local roof plumbing services. Got a leak? We'll beat the rain." - }, - robots: { - index: true, - follow: true - } -}; + title: "Raincheck Roof Plumbing | Emergency Roof Leak Repair", description: "Fast, honest roof plumbing services for emergency leaks, gutter repairs, and roof maintenance. Local, trusted, affordable."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - + + {children} - + +