3 Commits

Author SHA1 Message Date
21f6798707 Update src/app/page.tsx 2026-04-25 07:36:08 +00:00
c30755fc81 Merge version_1 into main
Merge version_1 into main
2026-04-25 07:33:31 +00:00
efddafabaf Merge version_1 into main
Merge version_1 into main
2026-04-25 07:33:02 +00:00

View File

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