Merge version_2 into main #7

Merged
bender merged 1 commits from version_2 into main 2026-04-09 20:52:25 +00:00

View File

@@ -10,7 +10,7 @@ import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarou
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
import { AlertTriangle, ArrowDown, Award, CheckCircle, CheckSquare, Home, Layout, MapPin, Shield, Star, Users, Wrench } from "lucide-react";
import { AlertTriangle, ArrowDown, Award, CheckCircle, CheckSquare, Home, Layout, MapPin, Mail, Phone, Star, Users, Wrench } from "lucide-react";
export default function LandingPage() {
return (
@@ -37,7 +37,7 @@ export default function LandingPage() {
{ name: "Contact", id: "contact" },
]}
button={{
text: "Get Estimate", href: "#contact"}}
text: "Contact Us", href: "mailto:info@jmroofing.com"}}
brandName="JM Roofing"
/>
</div>
@@ -48,8 +48,8 @@ export default function LandingPage() {
title="Protecting Your Legacy, One Roof at a Time."
description="Jim Sand's Roofing offers 3rd-generation craftsmanship and a premium customer experience, right here in Seymour, TN. Trust the local family name."
buttons={[
{ text: "Free Estimate", href: "#contact" },
{ text: "Our Services", href: "#services" },
{ text: "Call Now", onClick: () => window.location.href = 'tel:8655776725' },
{ text: "Send Message", href: "mailto:info@jmroofing.com" },
]}
mediaItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/roof-pattern_1203-2594.jpg?_wi=1", imageAlt: "Luxurious house with new roof" },
@@ -103,6 +103,10 @@ export default function LandingPage() {
]}
title="Premium Roofing & Exteriors"
description="We specialize in high-quality roofing services, siding, and storm repair to keep your home protected and beautiful."
buttons={[
{ text: "Call to Schedule", onClick: () => window.location.href = 'tel:8655776725' },
{ text: "Email Us", href: "mailto:info@jmroofing.com" },
]}
/>
</div>
@@ -154,10 +158,10 @@ export default function LandingPage() {
<ContactText
useInvertedBackground={false}
background={{ variant: "gradient-bars" }}
text="Ready to protect your home? Call us at (865) 577-6725 or request a free estimate today. Were here to help."
text="Ready to protect your home? Call us or send us an email to get a free estimate today. Were here to help."
buttons={[
{ text: "Call Now: (865) 577-6725", href: "tel:8655776725" },
{ text: "Request Estimate", href: "#contact" },
{ text: "Call Now", onClick: () => window.location.href = 'tel:8655776725' },
{ text: "Send Us an Email", href: "mailto:info@jmroofing.com" },
]}
/>
</div>
@@ -169,7 +173,7 @@ export default function LandingPage() {
title: "JM Roofing", items: [
{ label: "1340 Springfield Dr A", href: "#" },
{ label: "Seymour, TN 37865", href: "#" },
{ label: "(865) 577-6725", href: "tel:8655776725" },
{ label: "(865) 577-6725", onClick: () => window.location.href = 'tel:8655776725' },
],
},
{
@@ -181,10 +185,9 @@ export default function LandingPage() {
],
},
{
title: "Company", items: [
{ label: "About Us", href: "#about" },
{ label: "Testimonials", href: "#testimonials" },
{ label: "Contact", href: "#contact" },
title: "Contact", items: [
{ label: "Call Us", onClick: () => window.location.href = 'tel:8655776725' },
{ label: "Send Email", href: "mailto:info@jmroofing.com" },
],
},
]}
@@ -195,4 +198,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}