diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c1f48a0..b4c74e6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,27 +1,62 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Public_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 { Public_Sans } 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 publicSans = Public_Sans({ variable: "--font-public-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); + +export const metadata: Metadata = { + title: "Flying V Construction | Alberta Roofing, Decking & Exterior", + description: "5-star rated construction contractor in Alberta. Expert roofing, composite decks, fencing & exterior renovations. Free quotes. Trusted by homeowners.", + keywords: "roofing Alberta, deck construction, fencing contractor, exterior renovation, roof replacement, composite deck", + metadataBase: new URL("https://flyingvconstruction.ca"), + alternates: { + canonical: "https://flyingvconstruction.ca", + }, + openGraph: { + title: "Flying V Construction - Reliable Construction Done Right", + description: "Professional exterior renovations and construction services in Alberta. Roofing, decking, fencing & more. 5-star rated.", + url: "https://flyingvconstruction.ca", + siteName: "Flying V Construction", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/young-innocent-pure-beautiful-woman-dreaming-sitting-couch-white-dress-romantic-lyrical-thinking-green-tropical-nature-summer-relaxed-chilling-legs-resort-hotel_285396-6069.jpg", + alt: "Flying V Construction - Quality deck project", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Flying V Construction - Alberta Exterior Renovations", + description: "Trusted contractor specializing in roofing, decks, fencing & exterior work.", + images: [ + "http://img.b2bpic.net/free-photo/young-innocent-pure-beautiful-woman-dreaming-sitting-couch-white-dress-romantic-lyrical-thinking-green-tropical-nature-summer-relaxed-chilling-legs-resort-hotel_285396-6069.jpg", + ], + }, + robots: { + index: true, + follow: true, + }, +}; export default function RootLayout({ children, @@ -31,7 +66,9 @@ export default function RootLayout({ return ( - + {children}