import type { Metadata } from "next"; import { Inter } from "next/font/google"; import { Open_Sans } from "next/font/google"; import { Halant } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); const openSans = Open_Sans({ variable: "--font-open-sans", subsets: ["latin"], }); const halant = Halant({ variable: "--font-halant", subsets: ["latin"], weight: ["300", "400", "500", "600", "700"], }); export const metadata: Metadata = { title: "Plumbing Sacramento | Water Heater & Emergency Services", description: "Professional plumbing services in Sacramento. Water heater repair & installation, drain cleaning, emergency repairs 24/7. Licensed & insured. Call (279) 348-7473.", keywords: "plumbing Sacramento, water heater repair Sacramento, emergency plumbing, drain cleaning, plumber Sacramento CA", metadataBase: new URL("https://plumbingsacramento.com"), alternates: { canonical: "https://plumbingsacramento.com" }, openGraph: { title: "Professional Plumbing & Water Heater Services in Sacramento", description: "Expert plumbing solutions for Sacramento. 24/7 emergency service, water heater installation, drain cleaning, and more.", url: "https://plumbingsacramento.com", siteName: "Plumbing Sacramento", 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 in Sacramento" }, ], }, twitter: { card: "summary_large_image", title: "Professional Plumbing & Water Heater Services in Sacramento", description: "Expert plumbing solutions. 24/7 emergency service available. Call (279) 348-7473.", 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}