Merge version_1 into main #1

Merged
bender merged 6 commits from version_1 into main 2026-03-15 12:09:56 +00:00
6 changed files with 73 additions and 34 deletions

View File

@@ -69,7 +69,7 @@ export default function ContactPage() {
useInvertedBackground={true}
mediaAnimation="slide-up"
mediaPosition="right"
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-smiley-friends-outdoors_23-2149085492.jpg"
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-smiley-friends-outdoors_23-2149085492.jpg?_wi=2"
imageAlt="roofing contractor team professional group portrait"
inputPlaceholder="Enter your email address"
buttonText="Schedule Free Inspection"
@@ -119,7 +119,7 @@ export default function ContactPage() {
faqsAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={true}
imageSrc="http://img.b2bpic.net/free-photo/architects-hold-building-plan-check-work_1150-24366.jpg"
imageSrc="http://img.b2bpic.net/free-photo/architects-hold-building-plan-check-work_1150-24366.jpg?_wi=4"
imageAlt="roofing inspector professional inspection roof"
mediaPosition="right"
/>

View File

@@ -1,24 +1,61 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { DM_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 { DM_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 dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Professional Roofing Services | RoofCare Pro | Residential & Commercial",
description: "Expert roofing services for residential and commercial properties. Installation, repair, maintenance & emergency services. 24/7 support. Get your free inspection today.",
keywords: "roofing services, roof installation, roof repair, roofing contractor, residential roofing, commercial roofing, emergency roofing, roof replacement",
metadataBase: new URL("https://roofcarepro.com"),
alternates: {
canonical: "https://roofcarepro.com",
},
openGraph: {
title: "Professional Roofing Services | RoofCare Pro",
description: "Expert roofing solutions with 15+ years of experience. Free inspections, transparent pricing, 24/7 emergency services.",
url: "https://roofcarepro.com",
siteName: "RoofCare Pro",
type: "website",
images: [
{
url: "https://roofcarepro.com/og-hero.jpg",
alt: "Professional roofing services hero image",
},
],
},
twitter: {
card: "summary_large_image",
title: "Professional Roofing Services | RoofCare Pro",
description: "Expert roofing solutions with 15+ years of experience. Free inspections, 24/7 emergency services.",
images: ["https://roofcarepro.com/twitter-hero.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +64,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${dmSans.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -173,7 +173,7 @@ export default function HomePage() {
price: "Completed 2024",
rating: 5,
reviewCount: "18",
imageSrc: "http://img.b2bpic.net/free-photo/worker-building-roof-house_23-2148748850.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/worker-building-roof-house_23-2148748850.jpg?_wi=1",
imageAlt: "modern home new roof replacement architectural",
},
{
@@ -183,7 +183,7 @@ export default function HomePage() {
price: "Completed 2024",
rating: 5,
reviewCount: "22",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-working-outdoors_23-2149714259.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-working-outdoors_23-2149714259.jpg?_wi=1",
imageAlt: "commercial metal roofing installation office building",
},
{
@@ -193,7 +193,7 @@ export default function HomePage() {
price: "Completed 2023",
rating: 5,
reviewCount: "15",
imageSrc: "http://img.b2bpic.net/free-photo/worker-performs-overhaul-roof-residential-building_181624-61003.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/worker-performs-overhaul-roof-residential-building_181624-61003.jpg?_wi=1",
imageAlt: "storm damage roof repair emergency recovery",
},
{
@@ -203,7 +203,7 @@ export default function HomePage() {
price: "Completed 2023",
rating: 5,
reviewCount: "19",
imageSrc: "http://img.b2bpic.net/free-photo/modern-skyscrapers-japan-business-district_23-2148836784.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/modern-skyscrapers-japan-business-district_23-2148836784.jpg?_wi=1",
imageAlt: "industrial facility large roof installation project",
},
]}
@@ -233,7 +233,7 @@ export default function HomePage() {
quote: "RoofCare Pro replaced our roof after a severe storm. Their team was professional, efficient, and the quality is outstanding. Highly recommend!",
name: "Sarah Mitchell",
role: "Homeowner",
imageSrc: "http://img.b2bpic.net/free-photo/happy-mature-business-man-standing-office-cafe-leaning-counter-holding-jacket-shoulder-showing-thumb-up-like_74855-10007.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/happy-mature-business-man-standing-office-cafe-leaning-counter-holding-jacket-shoulder-showing-thumb-up-like_74855-10007.jpg?_wi=1",
imageAlt: "professional woman homeowner portrait smiling",
},
{
@@ -242,7 +242,7 @@ export default function HomePage() {
quote: "We've been using RoofCare Pro for our commercial property maintenance for 5 years. They're always on time, professional, and provide detailed reports.",
name: "Michael Chen",
role: "Business Owner",
imageSrc: "http://img.b2bpic.net/free-photo/people-technology-leisure-concept_273609-6599.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/people-technology-leisure-concept_273609-6599.jpg?_wi=1",
imageAlt: "professional business man portrait confident",
},
{
@@ -251,7 +251,7 @@ export default function HomePage() {
quote: "Got multiple quotes and RoofCare Pro offered the best value. They explained everything clearly and delivered exactly what was promised.",
name: "Jennifer Rodriguez",
role: "Property Manager",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-successful-entrepreneur_1098-3855.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-successful-entrepreneur_1098-3855.jpg?_wi=1",
imageAlt: "professional woman manager portrait confident",
},
{
@@ -260,7 +260,7 @@ export default function HomePage() {
quote: "During last year's hurricane, RoofCare Pro responded quickly and prevented further damage. Their emergency services are invaluable.",
name: "David Thompson",
role: "Homeowner",
imageSrc: "http://img.b2bpic.net/free-photo/man-having-his-arm-crossed-sitting-stool_23-2148306623.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/man-having-his-arm-crossed-sitting-stool_23-2148306623.jpg?_wi=1",
imageAlt: "homeowner man portrait satisfied client",
},
{
@@ -269,7 +269,7 @@ export default function HomePage() {
quote: "The attention to detail on our metal roof installation was impressive. The team cleaned everything up perfectly and left our property immaculate.",
name: "Emily Watson",
role: "Commercial Client",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-blonde-businesswoman-formal-dressed-isolated-dark-textured-background_613910-5391.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-blonde-businesswoman-formal-dressed-isolated-dark-textured-background_613910-5391.jpg?_wi=1",
imageAlt: "professional woman executive portrait confident",
},
{
@@ -278,7 +278,7 @@ export default function HomePage() {
quote: "From the initial inspection to final cleanup, RoofCare Pro maintained the highest standards. They're the only company I trust with my roof.",
name: "Robert Garcia",
role: "Homeowner",
imageSrc: "http://img.b2bpic.net/free-photo/young-smiley-man-looking-camera_23-2148306634.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-smiley-man-looking-camera_23-2148306634.jpg?_wi=1",
imageAlt: "satisfied homeowner man portrait professional",
},
]}
@@ -359,7 +359,7 @@ export default function HomePage() {
useInvertedBackground={true}
mediaAnimation="slide-up"
mediaPosition="right"
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-smiley-friends-outdoors_23-2149085492.jpg"
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-smiley-friends-outdoors_23-2149085492.jpg?_wi=1"
inputPlaceholder="Enter your email address"
buttonText="Schedule Free Inspection"
termsText="By submitting this form, you agree to our Terms and Conditions and Privacy Policy. We'll contact you within 24 hours to schedule your inspection."

View File

@@ -186,7 +186,7 @@ export default function PricingPage() {
faqsAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/architects-hold-building-plan-check-work_1150-24366.jpg"
imageSrc="http://img.b2bpic.net/free-photo/architects-hold-building-plan-check-work_1150-24366.jpg?_wi=3"
mediaPosition="left"
/>
</div>

View File

@@ -55,7 +55,7 @@ export default function ProjectsPage() {
price: "Completed 2024",
rating: 5,
reviewCount: "18",
imageSrc: "http://img.b2bpic.net/free-photo/worker-building-roof-house_23-2148748850.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/worker-building-roof-house_23-2148748850.jpg?_wi=2",
imageAlt: "modern home new roof replacement architectural",
},
{
@@ -65,7 +65,7 @@ export default function ProjectsPage() {
price: "Completed 2024",
rating: 5,
reviewCount: "22",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-working-outdoors_23-2149714259.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-working-outdoors_23-2149714259.jpg?_wi=2",
imageAlt: "commercial metal roofing installation office building",
},
{
@@ -75,7 +75,7 @@ export default function ProjectsPage() {
price: "Completed 2023",
rating: 5,
reviewCount: "15",
imageSrc: "http://img.b2bpic.net/free-photo/worker-performs-overhaul-roof-residential-building_181624-61003.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/worker-performs-overhaul-roof-residential-building_181624-61003.jpg?_wi=2",
imageAlt: "storm damage roof repair emergency recovery",
},
{
@@ -85,7 +85,7 @@ export default function ProjectsPage() {
price: "Completed 2023",
rating: 5,
reviewCount: "19",
imageSrc: "http://img.b2bpic.net/free-photo/modern-skyscrapers-japan-business-district_23-2148836784.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/modern-skyscrapers-japan-business-district_23-2148836784.jpg?_wi=2",
imageAlt: "industrial facility large roof installation project",
},
]}
@@ -115,7 +115,7 @@ export default function ProjectsPage() {
quote: "RoofCare Pro replaced our roof after a severe storm. Their team was professional, efficient, and the quality is outstanding. Highly recommend!",
name: "Sarah Mitchell",
role: "Homeowner",
imageSrc: "http://img.b2bpic.net/free-photo/happy-mature-business-man-standing-office-cafe-leaning-counter-holding-jacket-shoulder-showing-thumb-up-like_74855-10007.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/happy-mature-business-man-standing-office-cafe-leaning-counter-holding-jacket-shoulder-showing-thumb-up-like_74855-10007.jpg?_wi=2",
imageAlt: "professional woman homeowner portrait smiling",
},
{
@@ -124,7 +124,7 @@ export default function ProjectsPage() {
quote: "We've been using RoofCare Pro for our commercial property maintenance for 5 years. They're always on time, professional, and provide detailed reports.",
name: "Michael Chen",
role: "Business Owner",
imageSrc: "http://img.b2bpic.net/free-photo/people-technology-leisure-concept_273609-6599.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/people-technology-leisure-concept_273609-6599.jpg?_wi=2",
imageAlt: "professional business man portrait confident",
},
{
@@ -133,7 +133,7 @@ export default function ProjectsPage() {
quote: "Got multiple quotes and RoofCare Pro offered the best value. They explained everything clearly and delivered exactly what was promised.",
name: "Jennifer Rodriguez",
role: "Property Manager",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-successful-entrepreneur_1098-3855.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-successful-entrepreneur_1098-3855.jpg?_wi=2",
imageAlt: "professional woman manager portrait confident",
},
{
@@ -142,7 +142,7 @@ export default function ProjectsPage() {
quote: "During last year's hurricane, RoofCare Pro responded quickly and prevented further damage. Their emergency services are invaluable.",
name: "David Thompson",
role: "Homeowner",
imageSrc: "http://img.b2bpic.net/free-photo/man-having-his-arm-crossed-sitting-stool_23-2148306623.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/man-having-his-arm-crossed-sitting-stool_23-2148306623.jpg?_wi=2",
imageAlt: "homeowner man portrait satisfied client",
},
{
@@ -151,7 +151,7 @@ export default function ProjectsPage() {
quote: "The attention to detail on our metal roof installation was impressive. The team cleaned everything up perfectly and left our property immaculate.",
name: "Emily Watson",
role: "Commercial Client",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-blonde-businesswoman-formal-dressed-isolated-dark-textured-background_613910-5391.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-blonde-businesswoman-formal-dressed-isolated-dark-textured-background_613910-5391.jpg?_wi=2",
imageAlt: "professional woman executive portrait confident",
},
{
@@ -160,7 +160,7 @@ export default function ProjectsPage() {
quote: "From the initial inspection to final cleanup, RoofCare Pro maintained the highest standards. They're the only company I trust with my roof.",
name: "Robert Garcia",
role: "Homeowner",
imageSrc: "http://img.b2bpic.net/free-photo/young-smiley-man-looking-camera_23-2148306634.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-smiley-man-looking-camera_23-2148306634.jpg?_wi=2",
imageAlt: "satisfied homeowner man portrait professional",
},
]}
@@ -209,7 +209,7 @@ export default function ProjectsPage() {
faqsAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={true}
imageSrc="http://img.b2bpic.net/free-photo/architects-hold-building-plan-check-work_1150-24366.jpg"
imageSrc="http://img.b2bpic.net/free-photo/architects-hold-building-plan-check-work_1150-24366.jpg?_wi=2"
mediaPosition="right"
/>
</div>

View File

@@ -202,7 +202,7 @@ export default function ServicesPage() {
faqsAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={true}
imageSrc="http://img.b2bpic.net/free-photo/architects-hold-building-plan-check-work_1150-24366.jpg"
imageSrc="http://img.b2bpic.net/free-photo/architects-hold-building-plan-check-work_1150-24366.jpg?_wi=1"
mediaPosition="right"
/>
</div>