Merge version_2 into main #3

Merged
bender merged 1 commits from version_2 into main 2026-04-25 07:36:14 +00:00

View File

@@ -11,7 +11,7 @@ import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSp
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
import { Award, Briefcase, Clock, Search, Shield, Wrench } from "lucide-react";
import { Award, Briefcase, Clock, Search, Shield, Wrench, Mail, Phone, MapPin } from "lucide-react";
export default function LandingPage() {
return (
@@ -176,14 +176,14 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={false}
faqs={[
{ id: "1", title: "How long does a roof last?", content: "With proper installation, decades." },
{ id: "2", title: "Do you provide estimates?", content: "Yes, always free of charge." },
{ id: "3", title: "Are you licensed?", content: "Fully licensed and insured." },
{ id: "1", title: "What areas do you serve?", content: "We proudly serve all local tri-state regions." },
{ id: "2", title: "Do you provide free inspections?", content: "Yes, we provide 100% free, no-obligation roof inspections and quotes." },
{ id: "3", title: "Is your team insured?", content: "Absolutely. All our roofing professionals are fully licensed, bonded, and insured for your peace of mind." },
]}
imageSrc="http://img.b2bpic.net/free-photo/man-with-helmet-working-roof-full-shot_23-2149343662.jpg"
mediaAnimation="slide-up"
title="Common Questions"
description="Everything you need to know."
description="Your roofing concerns answered."
faqsAnimation="slide-up"
/>
</div>
@@ -192,8 +192,11 @@ export default function LandingPage() {
<ContactText
useInvertedBackground={false}
background={{ variant: "rotated-rays-static" }}
text="Get Your Free Quote Today. Request an inspection."
buttons={[{ text: "Call Now", href: "tel:5550123" }]}
text="Get Your Free Inspection Today. Call or email us to schedule your visit."
buttons={[
{ text: "Call (555) 012-3456", href: "tel:5550123456" },
{ text: "Email Us", href: "mailto:support@hoursjmroofing.com" }
]}
/>
</div>
@@ -202,22 +205,28 @@ export default function LandingPage() {
columns={[
{
title: "Company", items: [
{ label: "About", href: "#about" },
{ label: "Services", href: "#services" },
{ label: "About Us", href: "#about" },
{ label: "Our Process", href: "#why-us" },
],
},
{
title: "Support", items: [
{ label: "Contact", href: "#contact" },
{ label: "FAQ", href: "#faq" },
title: "Services", items: [
{ label: "Installation", href: "#services" },
{ label: "Repair & Maintenance", href: "#services" },
],
},
{
title: "Contact", items: [
{ label: "(555) 012-3456", href: "tel:5550123456" },
{ label: "support@hoursjmroofing.com", href: "mailto:support@hoursjmroofing.com" },
],
},
]}
logoText="Hours.JM Roofing"
copyrightText="© 2026 Hours.JM Roofing 3rd Generation"
copyrightText="© 2026 Hours.JM Roofing. All rights reserved. 3rd Generation Roofing Excellence."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}