diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6713378..325c1d6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,18 +6,50 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "GP Roofing Kentucky | Trusted Roofing Contractor", + description: "Professional roofing services in Kentucky. Expert roof replacement, repair, and installation. 5-star rated, licensed & insured. Free estimates.", + keywords: "roofing Kentucky, roof repair, roof replacement, roofing contractor, residential roofing", + metadataBase: new URL("https://gproofingky.com"), + alternates: { + canonical: "https://gproofingky.com", + }, + openGraph: { + title: "GP Roofing Kentucky - Trusted Roofing Expert", + description: "Professional roofing built to last. Quality craftsmanship, fair pricing, and a crew that treats your home like their own.", + url: "https://gproofingky.com", + siteName: "GP Roofing Kentucky", + type: "website", + images: [ + { + url: "https://gproofingky.com/og-image.jpg", + alt: "GP Roofing Kentucky - Professional Roofing Services", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "GP Roofing Kentucky - Trusted Roofing Expert", + description: "Professional roofing built to last. Free estimates available.", + images: ["https://gproofingky.com/twitter-image.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -26,7 +58,9 @@ export default function RootLayout({ return ( - + {children}