Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-03-15 11:58:30 +00:00
5 changed files with 76 additions and 37 deletions

View File

@@ -120,7 +120,7 @@ export default function AboutPage() {
"Every project receives personal attention from our ownership team. We stand behind our work with comprehensive warranties and responsive customer support available 24/7.",
},
]}
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-man-working-as-plumber_23-2150746293.jpg"
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-man-working-as-plumber_23-2150746293.jpg?_wi=2"
imageAlt="Professional roofing team inspection"
mediaAnimation="slide-up"
useInvertedBackground={false}
@@ -194,7 +194,7 @@ export default function AboutPage() {
company: "Denver, CO",
rating: 5,
imageSrc:
"http://img.b2bpic.net/free-photo/young-smiling-woman-cafe-drinking-coffee-date-looking-camera_197531-22708.jpg",
"http://img.b2bpic.net/free-photo/young-smiling-woman-cafe-drinking-coffee-date-looking-camera_197531-22708.jpg?_wi=2",
imageAlt: "satisfied customer portrait",
},
{
@@ -204,7 +204,7 @@ export default function AboutPage() {
company: "Aurora Commercial Properties",
rating: 5,
imageSrc:
"http://img.b2bpic.net/free-photo/cheerful-employee-with-crossed-arms_1098-3148.jpg",
"http://img.b2bpic.net/free-photo/cheerful-employee-with-crossed-arms_1098-3148.jpg?_wi=2",
imageAlt: "professional woman portrait",
},
{
@@ -214,7 +214,7 @@ export default function AboutPage() {
company: "Mesa Retail Group",
rating: 5,
imageSrc:
"http://img.b2bpic.net/free-photo/happy-young-businessman-walking-near-business-center_171337-19784.jpg",
"http://img.b2bpic.net/free-photo/happy-young-businessman-walking-near-business-center_171337-19784.jpg?_wi=2",
imageAlt: "business owner portrait",
},
{
@@ -224,7 +224,7 @@ export default function AboutPage() {
company: "Highlands Community",
rating: 5,
imageSrc:
"http://img.b2bpic.net/free-photo/closeup-smiling-beautiful-adult-businesswoman_1262-1760.jpg",
"http://img.b2bpic.net/free-photo/closeup-smiling-beautiful-adult-businesswoman_1262-1760.jpg?_wi=2",
imageAlt: "HOA president portrait",
},
{
@@ -234,7 +234,7 @@ export default function AboutPage() {
company: "Colorado Insurance Partners",
rating: 5,
imageSrc:
"http://img.b2bpic.net/free-photo/portrait-happy-businessman-with-crossed-arms_23-2147955274.jpg",
"http://img.b2bpic.net/free-photo/portrait-happy-businessman-with-crossed-arms_23-2147955274.jpg?_wi=2",
imageAlt: "insurance agent portrait",
},
{
@@ -244,7 +244,7 @@ export default function AboutPage() {
company: "Westminster, CO",
rating: 5,
imageSrc:
"http://img.b2bpic.net/free-photo/woman-talking-phone-home_23-2148990136.jpg",
"http://img.b2bpic.net/free-photo/woman-talking-phone-home_23-2148990136.jpg?_wi=2",
imageAlt: "homeowner portrait",
},
]}

View File

@@ -137,7 +137,7 @@ export default function ContactPage() {
"For immediate assistance with storm damage, roof leaks, or urgent repairs, call our emergency hotline at (720) 555-0198. Available 24/7/365 with rapid response times.",
},
]}
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-man-working-as-plumber_23-2150746293.jpg"
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-man-working-as-plumber_23-2150746293.jpg?_wi=3"
imageAlt="Professional roofing consultation"
mediaAnimation="slide-up"
useInvertedBackground={true}

View File

@@ -1,24 +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";
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 openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "RoofPro Solutions - Expert Roofing Services | Colorado Contractor",
description: "Professional roofing services in Colorado. Emergency repairs, roof replacement, inspections & maintenance. 30+ years experience. Free quote. 24/7 available.",
keywords: "roofing contractor Colorado, roof repair Denver, roof replacement, emergency roofing, residential roofing, commercial roofing, roof inspection, shingle repair",
metadataBase: new URL("https://roofprosolutions.com"),
alternates: {
canonical: "https://roofprosolutions.com",
},
openGraph: {
title: "RoofPro Solutions - Expert Roofing Services",
description: "Professional roofing solutions including repairs, replacement, inspections & maintenance. 30+ years of trusted service.",
url: "https://roofprosolutions.com",
siteName: "RoofPro Solutions",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/man-with-helmet-sitting-roof-full-shot_23-2149343712.jpg",
alt: "Professional roofing services",
},
],
},
twitter: {
card: "summary_large_image",
title: "RoofPro Solutions - Colorado's Trusted Roofing Experts",
description: "Professional roofing repair, replacement & inspections. Free estimates. Call now!",
images: ["http://img.b2bpic.net/free-photo/man-with-helmet-sitting-roof-full-shot_23-2149343712.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={`${openSans.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -154,7 +154,7 @@ export default function HomePage() {
"Storm damage, leaks, or urgent repairs - our emergency team responds within 2 hours.",
},
]}
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-man-working-as-plumber_23-2150746293.jpg"
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-man-working-as-plumber_23-2150746293.jpg?_wi=1"
imageAlt="Professional roofing inspection"
mediaAnimation="slide-up"
useInvertedBackground={false}
@@ -180,7 +180,7 @@ export default function HomePage() {
price: "Starting at $299",
variant: "24/7 Available",
imageSrc:
"http://img.b2bpic.net/free-photo/medium-shot-roofer-working-with-protection-helmet_23-2149343637.jpg",
"http://img.b2bpic.net/free-photo/medium-shot-roofer-working-with-protection-helmet_23-2149343637.jpg?_wi=1",
imageAlt: "emergency roof repair storm damage residential",
},
{
@@ -189,7 +189,7 @@ export default function HomePage() {
price: "Free Estimate",
variant: "All Materials",
imageSrc:
"http://img.b2bpic.net/free-photo/man-walking-roof_1321-1040.jpg",
"http://img.b2bpic.net/free-photo/man-walking-roof_1321-1040.jpg?_wi=1",
imageAlt: "new roof replacement installation professional",
},
{
@@ -198,7 +198,7 @@ export default function HomePage() {
price: "Free Quote",
variant: "Comprehensive",
imageSrc:
"http://img.b2bpic.net/free-photo/architects-hold-floor-plans-talk-phone_1150-24345.jpg",
"http://img.b2bpic.net/free-photo/architects-hold-floor-plans-talk-phone_1150-24345.jpg?_wi=1",
imageAlt: "professional roof inspection structural assessment",
},
{
@@ -207,7 +207,7 @@ export default function HomePage() {
price: "Quarterly Plans",
variant: "Extended Life",
imageSrc:
"http://img.b2bpic.net/free-photo/front-view-construction-roof-daylight_23-2148748815.jpg",
"http://img.b2bpic.net/free-photo/front-view-construction-roof-daylight_23-2148748815.jpg?_wi=1",
imageAlt: "roof maintenance preventive care professional",
},
{
@@ -216,7 +216,7 @@ export default function HomePage() {
price: "Custom Pricing",
variant: "Premium Quality",
imageSrc:
"http://img.b2bpic.net/free-photo/architect-holding-blueprint-with-protective-helmet_23-2148269833.jpg",
"http://img.b2bpic.net/free-photo/architect-holding-blueprint-with-protective-helmet_23-2148269833.jpg?_wi=1",
imageAlt: "new roof installation residential construction",
},
{
@@ -225,7 +225,7 @@ export default function HomePage() {
price: "Enterprise Solutions",
variant: "Large Scale",
imageSrc:
"http://img.b2bpic.net/free-photo/low-angle-view-croatia-monument-uprising-people-banija-kordun_181624-6228.jpg",
"http://img.b2bpic.net/free-photo/low-angle-view-croatia-monument-uprising-people-banija-kordun_181624-6228.jpg?_wi=1",
imageAlt: "commercial building roofing large scale project",
},
]}
@@ -315,7 +315,7 @@ export default function HomePage() {
company: "Denver, CO",
rating: 5,
imageSrc:
"http://img.b2bpic.net/free-photo/young-smiling-woman-cafe-drinking-coffee-date-looking-camera_197531-22708.jpg",
"http://img.b2bpic.net/free-photo/young-smiling-woman-cafe-drinking-coffee-date-looking-camera_197531-22708.jpg?_wi=1",
imageAlt: "satisfied customer portrait professional photo",
},
{
@@ -325,7 +325,7 @@ export default function HomePage() {
company: "Aurora Commercial Properties",
rating: 5,
imageSrc:
"http://img.b2bpic.net/free-photo/cheerful-employee-with-crossed-arms_1098-3148.jpg",
"http://img.b2bpic.net/free-photo/cheerful-employee-with-crossed-arms_1098-3148.jpg?_wi=1",
imageAlt: "professional woman portrait business headshot",
},
{
@@ -335,7 +335,7 @@ export default function HomePage() {
company: "Mesa Retail Group",
rating: 5,
imageSrc:
"http://img.b2bpic.net/free-photo/happy-young-businessman-walking-near-business-center_171337-19784.jpg",
"http://img.b2bpic.net/free-photo/happy-young-businessman-walking-near-business-center_171337-19784.jpg?_wi=1",
imageAlt: "business owner male portrait professional",
},
{
@@ -345,7 +345,7 @@ export default function HomePage() {
company: "Highlands Community",
rating: 5,
imageSrc:
"http://img.b2bpic.net/free-photo/closeup-smiling-beautiful-adult-businesswoman_1262-1760.jpg",
"http://img.b2bpic.net/free-photo/closeup-smiling-beautiful-adult-businesswoman_1262-1760.jpg?_wi=1",
imageAlt: "professional woman HOA president portrait",
},
{
@@ -355,7 +355,7 @@ export default function HomePage() {
company: "Colorado Insurance Partners",
rating: 5,
imageSrc:
"http://img.b2bpic.net/free-photo/portrait-happy-businessman-with-crossed-arms_23-2147955274.jpg",
"http://img.b2bpic.net/free-photo/portrait-happy-businessman-with-crossed-arms_23-2147955274.jpg?_wi=1",
imageAlt: "insurance agent professional male portrait",
},
{
@@ -365,7 +365,7 @@ export default function HomePage() {
company: "Westminster, CO",
rating: 5,
imageSrc:
"http://img.b2bpic.net/free-photo/woman-talking-phone-home_23-2148990136.jpg",
"http://img.b2bpic.net/free-photo/woman-talking-phone-home_23-2148990136.jpg?_wi=1",
imageAlt: "homeowner woman happy portrait professional",
},
]}

View File

@@ -100,11 +100,11 @@ export default function ServicesPage() {
buttonAnimation="slide-up"
mediaItems={[
{
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-roofer-working-with-protection-helmet_23-2149343637.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-roofer-working-with-protection-helmet_23-2149343637.jpg?_wi=2",
imageAlt: "professional roofing service",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/architect-holding-blueprint-with-protective-helmet_23-2148269833.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/architect-holding-blueprint-with-protective-helmet_23-2148269833.jpg?_wi=2",
imageAlt: "professional roofing installation",
},
]}
@@ -129,7 +129,7 @@ export default function ServicesPage() {
name: "Emergency Roof Repairs",
price: "Starting at $299",
variant: "24/7 Available",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-roofer-working-with-protection-helmet_23-2149343637.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-roofer-working-with-protection-helmet_23-2149343637.jpg?_wi=3",
imageAlt: "emergency roof repair",
},
{
@@ -137,7 +137,7 @@ export default function ServicesPage() {
name: "Full Roof Replacement",
price: "Free Estimate",
variant: "All Materials",
imageSrc: "http://img.b2bpic.net/free-photo/man-walking-roof_1321-1040.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/man-walking-roof_1321-1040.jpg?_wi=2",
imageAlt: "roof replacement",
},
{
@@ -145,7 +145,7 @@ export default function ServicesPage() {
name: "Professional Inspection",
price: "Free Quote",
variant: "Comprehensive",
imageSrc: "http://img.b2bpic.net/free-photo/architects-hold-floor-plans-talk-phone_1150-24345.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/architects-hold-floor-plans-talk-phone_1150-24345.jpg?_wi=2",
imageAlt: "professional inspection",
},
{
@@ -153,7 +153,7 @@ export default function ServicesPage() {
name: "Preventive Maintenance",
price: "Quarterly Plans",
variant: "Extended Life",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-construction-roof-daylight_23-2148748815.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-construction-roof-daylight_23-2148748815.jpg?_wi=2",
imageAlt: "maintenance services",
},
{
@@ -161,7 +161,7 @@ export default function ServicesPage() {
name: "New Installation",
price: "Custom Pricing",
variant: "Premium Quality",
imageSrc: "http://img.b2bpic.net/free-photo/architect-holding-blueprint-with-protective-helmet_23-2148269833.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/architect-holding-blueprint-with-protective-helmet_23-2148269833.jpg?_wi=3",
imageAlt: "new installation",
},
{
@@ -169,7 +169,7 @@ export default function ServicesPage() {
name: "Commercial Roofing",
price: "Enterprise Solutions",
variant: "Large Scale",
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-view-croatia-monument-uprising-people-banija-kordun_181624-6228.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-view-croatia-monument-uprising-people-banija-kordun_181624-6228.jpg?_wi=2",
imageAlt: "commercial roofing",
},
]}