diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 3860c8e..8aaacbc 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -104,7 +104,7 @@ export default function ContactPage() { required: true, }} useInvertedBackground={false} - imageSrc="http://img.b2bpic.net/free-photo/couple-cheerful-business-colleagues-watching-content-computer-monitor-smiling-laughing-while-sitting-workplace-business-communication-concept_74855-11647.jpg" + imageSrc="http://img.b2bpic.net/free-photo/couple-cheerful-business-colleagues-watching-content-computer-monitor-smiling-laughing-while-sitting-workplace-business-communication-concept_74855-11647.jpg?_wi=3" imageAlt="BuildCraft office workspace" mediaAnimation="slide-up" mediaPosition="right" diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 83bcc55..9389092 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,29 +1,55 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; +import { Libre_Baskerville } from "next/font/google"; import { Inter } 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 { Libre_Baskerville } from "next/font/google"; - - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; const libreBaskerville = Libre_Baskerville({ variable: "--font-libre-baskerville", subsets: ["latin"], weight: ["400", "700"], }); + const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "BuildCraft - Professional Construction & Renovation Services", + description: "Expert construction services including home renovation, remodeling, roofing, and concrete work. Free quotes, licensed contractors, proven excellence.", + keywords: "construction, home renovation, remodeling, roofing, concrete work, Boston construction, general contractor", + metadataBase: new URL("https://buildcraft.com"), + alternates: { + canonical: "https://buildcraft.com", + }, + openGraph: { + title: "BuildCraft - Professional Construction Services", + description: "Transform your home with professional construction and renovation services. Expert team, quality craftsmanship, proven results.", + url: "https://buildcraft.com", + siteName: "BuildCraft", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/low-angle-shot-modern-wooden-house-with-glass-terrace-borders_181624-5142.jpg", + alt: "BuildCraft Professional Construction", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "BuildCraft - Professional Construction Services", + description: "Expert construction, renovation, and remodeling services in Boston.", + images: ["http://img.b2bpic.net/free-photo/low-angle-shot-modern-wooden-house-with-glass-terrace-borders_181624-5142.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -32,7 +58,9 @@ export default function RootLayout({ return ( - + {children}