diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1bfe997..c20ed4c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,48 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Archivo } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Archivo } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const archivo = Archivo({ variable: "--font-archivo", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "ProRoof | Professional Roofing Experts", + description: "Expert roofing solutions including repair, replacement, and storm damage. Licensed, insured, 25+ years experience. Free estimates.", + keywords: "roofing, roof repair, roof replacement, roofing contractor, storm damage, licensed roofer, residential roofing", + openGraph: { + title: "ProRoof | Professional Roofing Solutions", + description: "Expert roofing contractor with 25+ years experience. Free estimates, licensed and insured.", + siteName: "ProRoof", + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "ProRoof | Professional Roofing Experts", + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +51,9 @@ export default function RootLayout({ return ( - + {children}