diff --git a/src/app/page.tsx b/src/app/page.tsx index 2795337..35d4847 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -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" /> @@ -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" }, + ]} /> @@ -154,10 +158,10 @@ export default function LandingPage() { window.location.href = 'tel:8655776725' }, + { text: "Send Us an Email", href: "mailto:info@jmroofing.com" }, ]} /> @@ -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() { ); -} +} \ No newline at end of file