diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6cbe480..56919f8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,28 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Open_Sans } 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 { Open_Sans } from "next/font/google"; - - -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"], }); + const openSans = Open_Sans({ variable: "--font-open-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Contact Riteline Roofing | Free Quote & Inspection", + description: "Request your free roofing quote. Contact Riteline Roofing at (204) 312-0855. Serving Rosenfeld, MB and Southern Manitoba.", + keywords: "roofing contractor Rosenfeld MB, roofing Winkler Manitoba, roof repair Southern Manitoba, Riteline Roofing & Exteriors, residential roofing services", + metadataBase: new URL("https://ritelineroofing.ca"), + alternates: { + canonical: "https://ritelineroofing.ca" + }, + openGraph: { + title: "Riteline Roofing & Exteriors | Southern Manitoba Roofing Contractor", + description: "Professional roofing and exterior services. 5-star rated. Free quotes. Serving Rosenfeld, Winkler, Morden, and surrounding areas.", + url: "https://ritelineroofing.ca", + siteName: "Riteline Roofing & Exteriors", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/back-view-male-musician-climbing-roof-with-electric-guitar_23-2148680354.jpg", + alt: "Professional roofing installation" + } + ] + }, + twitter: { + card: "summary_large_image", + title: "Riteline Roofing & Exteriors | Southern Manitoba", + description: "Professional roofing contractor. 5-star rated. Request your free quote.", + images: ["http://img.b2bpic.net/free-photo/back-view-male-musician-climbing-roof-with-electric-guitar_23-2148680354.jpg"] + }, + robots: { + index: true, + follow: true + } +}; + export default function RootLayout({ children, }: Readonly<{ @@ -31,7 +64,9 @@ export default function RootLayout({ return ( - + {children}