diff --git a/src/app/page.tsx b/src/app/page.tsx index 632dfdf..ca9336a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -12,7 +12,7 @@ import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaA import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; -import { AlertTriangle, CheckCircle, Wrench } from "lucide-react"; +import { AlertTriangle, CheckCircle, Wrench, MessageSquare, HelpCircle } from "lucide-react"; export default function LandingPage() { return ( @@ -35,6 +35,8 @@ export default function LandingPage() { { name: "Home", id: "hero" }, { name: "Services", id: "features" }, { name: "About", id: "about" }, + { name: "Testimonials", id: "testimonials" }, + { name: "FAQ", id: "faq" }, { name: "Contact", id: "contact" } ]} brandName="Summit Roofing" @@ -149,14 +151,12 @@ export default function LandingPage() { gridVariant="uniform-all-items-equal" useInvertedBackground={false} testimonials={[ - { id: "1", name: "Sarah Miller", role: "Homeowner", company: "Client", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/smiling-man-holding-her-girlfriend-s-hand-sitting-outdoor_23-2147891197.jpg" }, - { id: "2", name: "James Anderson", role: "Homeowner", company: "Client", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/dutch-angle-shot-tall-apartment-building-windows_181624-4089.jpg" }, - { id: "3", name: "Emily Chen", role: "Homeowner", company: "Client", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/happy-overjoyed-woman-rejoicing-her-success_74855-3513.jpg" }, - { id: "4", name: "David Wilson", role: "Homeowner", company: "Client", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/friends-enjoying-pizza-lunch_23-2148451694.jpg" }, - { id: "5", name: "Linda Martinez", role: "Homeowner", company: "Client", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/low-angle-woman-enjoying-music_23-2148602721.jpg" } + { id: "1", name: "Mark Thompson", role: "Homeowner", company: "Roofed my colonial home perfectly.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/smiling-man-holding-her-girlfriend-s-hand-sitting-outdoor_23-2147891197.jpg" }, + { id: "2", name: "Elena Rodriguez", role: "Homeowner", company: "Fixed my leak in hours.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/dutch-angle-shot-tall-apartment-building-windows_181624-4089.jpg" }, + { id: "3", name: "Kevin O'Shea", role: "Homeowner", company: "Professional installation crew.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/happy-overjoyed-woman-rejoicing-her-success_74855-3513.jpg" } ]} - title="Trusted by Homeowners" - description="Don't take our word for it—hear from satisfied homeowners." + title="Roofing Customer Reviews" + description="Hear why homeowners choose Summit Roofing for their protection." /> @@ -165,13 +165,14 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={false} faqs={[ - { id: "q1", title: "How often should I replace my roof?", content: "Typically, roofs last 20-25 years, but damage may require earlier replacement." }, - { id: "q2", title: "Do you offer free estimates?", content: "Yes, we provide completely free, no-obligation estimates for every client." }, - { id: "q3", title: "What kind of warranty do you offer?", content: "We offer a 10-year workmanship guarantee on all full roof replacements." } + { id: "q1", title: "How long is a typical roof install?", content: "Most residential roof replacements are completed within 1-3 days, depending on home size and complexity." }, + { id: "q2", title: "Do you handle insurance claims?", content: "Yes, our team is experienced in working with insurance adjusters to document storm damage correctly." }, + { id: "q3", title: "What if I have an emergency leak?", content: "We have a dedicated 24/7 emergency response line for urgent leak situations to protect your home." }, + { id: "q4", title: "How do I maintain my new roof?", content: "Regular inspections and debris removal from gutters are the best ways to ensure your roof lasts its full lifespan." } ]} imageSrc="http://img.b2bpic.net/free-photo/young-engineer-pointing-clipboard-uniform-looking-focused-front-view_176474-21311.jpg" title="Common Roofing Questions" - description="Answers to the most frequent questions from our customers." + description="Find answers to everything you need to know about your roof." faqsAnimation="blur-reveal" imageAlt="roof inspection checklist" mediaAnimation="blur-reveal" @@ -181,14 +182,15 @@ export default function LandingPage() {
@@ -208,4 +211,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +}