import type { Metadata } from "next"; import { Noto_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const notoSans = Noto_Sans({ variable: "--font-noto-sans", subsets: ["latin"], }); export const metadata: Metadata = { title: "Premium Metal Roofing & Construction — Martinez Standing Seam Experts", description: "Expert metal roofing installation, repairs, and construction. Standing seam specialists with 5-star service, clear communication, and fast scheduling.", keywords: "metal roofing, standing seam roof, roof repair, roofing contractor, metal roof installation, residential roofing", metadataBase: new URL("https://martinez-roofing.com"), alternates: { canonical: "https://martinez-roofing.com" }, openGraph: { title: "Premium Metal Roofing & Construction — Martinez", description: "Expert standing seam metal roofing and construction services. Fast, responsive, and built to last.", url: "https://martinez-roofing.com", siteName: "Martinez Metal Roofing & Construction", type: "website", images: [ { url: "https://img.b2bpic.net/free-photo/long-shot-roofer-working-with-helmet_23-2149343709.jpg", alt: "Metal roofing installation" } ] }, twitter: { card: "summary_large_image", title: "Premium Metal Roofing & Construction — Martinez", description: "Expert standing seam installation and roofing services.", images: ["https://img.b2bpic.net/free-photo/long-shot-roofer-working-with-helmet_23-2149343709.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}