diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 2d26fbc..484c661 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -93,7 +93,7 @@ export default function AboutPage() { { value: "25+", title: "Years Experience" }, { value: "24/7", title: "Emergency Service" }, ]} - imageSrc="http://img.b2bpic.net/free-photo/senior-business-man-laughing-with-man-young-business-woman_1262-748.jpg" + imageSrc="http://img.b2bpic.net/free-photo/senior-business-man-laughing-with-man-young-business-woman_1262-748.jpg?_wi=2" imageAlt="professional roofing team group portrait" mediaAnimation="slide-up" metricsAnimation="entrance-slide" @@ -114,7 +114,7 @@ export default function AboutPage() { title: "Premium Quality Materials", description: "We use only manufacturer-certified, top-tier roofing materials from industry-leading brands.", media: { - imageSrc: "http://img.b2bpic.net/free-photo/photo-wood-texture-pattern_58702-15478.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/photo-wood-texture-pattern_58702-15478.jpg?_wi=3", imageAlt: "quality roofing materials premium products", }, items: [ @@ -129,7 +129,7 @@ export default function AboutPage() { title: "Lifetime Warranty Protection", description: "All our roofing projects come with comprehensive warranties covering materials and workmanship.", media: { - imageSrc: "http://img.b2bpic.net/free-vector/collection-new-year-badges-different-shapes_23-2147711279.jpg", + imageSrc: "http://img.b2bpic.net/free-vector/collection-new-year-badges-different-shapes_23-2147711279.jpg?_wi=3", imageAlt: "warranty protection certificate insurance document", }, items: [ @@ -144,7 +144,7 @@ export default function AboutPage() { title: "Fully Licensed & Insured", description: "Our team consists of certified, licensed professionals with comprehensive insurance protection.", media: { - imageSrc: "http://img.b2bpic.net/free-photo/rolled-graduation-diploma-certificate_23-2148769711.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/rolled-graduation-diploma-certificate_23-2148769711.jpg?_wi=3", imageAlt: "licensed contractor credentials professional", }, items: [ diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0f7096a..455744a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,28 +1,54 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; +import { DM_Sans } 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 { DM_Sans } from "next/font/google"; - - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); + const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "ProRoof Premium - Expert Roofing Services | Licensed Contractor", + description: "Professional roofing services for residential and commercial properties. Expert installation, repair, and maintenance with lifetime warranty. Free inspection. 24/7 emergency service available.", + keywords: "roofing services, roof repair, roof installation, roofing contractor, emergency roofing, residential roofing, commercial roofing, roof replacement, licensed roofer, roofing company", + metadataBase: new URL("https://proroof-premium.example.com"), + alternates: { + canonical: "https://proroof-premium.example.com", + }, + openGraph: { + title: "ProRoof Premium - Expert Roofing Services", + description: "Professional roofing solutions with 25+ years of experience. Quality materials, lifetime warranty, and 24/7 emergency service.", + url: "https://proroof-premium.example.com", + siteName: "ProRoof Premium", + type: "website", + images: [ + { + url: "https://proroof-premium.example.com/og-image.jpg", + alt: "ProRoof Premium - Professional Roofing Services", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "ProRoof Premium - Expert Roofing Services", + description: "Professional roofing solutions with 25+ years of experience. Quality materials, lifetime warranty, and 24/7 emergency service.", + images: ["https://proroof-premium.example.com/twitter-image.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -31,7 +57,9 @@ export default function RootLayout({ return ( - + {children}