2 Commits

Author SHA1 Message Date
9a87b6799b Update src/app/page.tsx 2026-05-21 01:30:14 +00:00
ab59aa1e29 Merge version_1 into main
Merge version_1 into main
2026-05-20 21:57:09 +00:00

View File

@@ -34,6 +34,7 @@ export default function LandingPage() {
{ name: "About", id: "#about" }, { name: "About", id: "#about" },
{ name: "Services", id: "#services" }, { name: "Services", id: "#services" },
{ name: "Reviews", id: "#reviews" }, { name: "Reviews", id: "#reviews" },
{ name: "FAQ", id: "#faq" },
{ name: "Contact", id: "#contact" }, { name: "Contact", id: "#contact" },
]} ]}
brandName="HandyCraft Home Services" brandName="HandyCraft Home Services"
@@ -140,15 +141,15 @@ export default function LandingPage() {
textboxLayout="split" textboxLayout="split"
useInvertedBackground={true} useInvertedBackground={true}
faqs={[ faqs={[
{ id: "f1", title: "Are you licensed and insured?", content: "Yes, HandyCraft Home Services is fully licensed and insured for your peace of mind." }, { id: "f1", title: "Does HandyCraft offer auto glass repair or replacement?", content: "While we specialize in home maintenance, we provide high-quality mobile auto glass services including windshield repair and chip treatment across the Auburn, WA region." },
{ id: "f2", title: "Do you provide free estimates?", content: "We offer free estimates for all major repair and remodeling projects." }, { id: "f2", title: "How fast can you repair my cracked windshield?", content: "For most small chips, our mobile auto glass team can complete repairs in less than an hour at your home or work location." },
{ id: "f3", title: "What areas do you serve?", content: "We proudly serve Auburn, WA, and the surrounding local communities." }, { id: "f3", title: "Is auto glass insurance accepted?", content: "Yes, we work directly with major insurance providers to handle your auto glass claims and minimize out-of-pocket costs." },
{ id: "f4", title: "Are you veteran-owned?", content: "Yes, we are a proud veteran-owned and women-owned local business." }, { id: "f4", title: "Why choose our mobile auto glass service?", content: "We combine local expertise with certified technician training to ensure your windshield is safe and meets all Washington state standards." },
]} ]}
imageSrc="http://img.b2bpic.net/free-photo/top-view-toolbox-with-yellow-tools_23-2148428288.jpg" imageSrc="http://img.b2bpic.net/free-photo/close-up-of-cracked-car-windshield_23-2148784865.jpg"
mediaAnimation="slide-up" mediaAnimation="slide-up"
title="Frequently Asked Questions" title="Auto Glass & Home Repair FAQs"
description="Have questions about our handyman services? We are here to help." description="Common questions about our local home and auto glass services in Auburn, Washington."
faqsAnimation="slide-up" faqsAnimation="slide-up"
/> />
</div> </div>
@@ -158,9 +159,9 @@ export default function LandingPage() {
tag="Contact Us" tag="Contact Us"
useInvertedBackground={false} useInvertedBackground={false}
background={{ variant: "animated-grid" }} background={{ variant: "animated-grid" }}
title="Ready for your home repair?" title="Auto Glass & Home Repair in Auburn, WA"
description="Call us today or submit a request for a free estimate." description="Schedule your repair today. Phone: (206) 672-5605 | Serving all Auburn & South King County neighborhoods."
buttonText="Send Request" buttonText="Get Free Estimate"
/> />
</div> </div>
@@ -170,7 +171,7 @@ export default function LandingPage() {
logoText="HandyCraft Home Services" logoText="HandyCraft Home Services"
columns={[ columns={[
{ title: "Company", items: [{ label: "About Us", href: "#about" }, { label: "Services", href: "#services" }, { label: "Contact", href: "#contact" }] }, { title: "Company", items: [{ label: "About Us", href: "#about" }, { label: "Services", href: "#services" }, { label: "Contact", href: "#contact" }] },
{ title: "Resources", items: [{ label: "Reviews", href: "#reviews" }, { label: "FAQ", href: "#faq" }] }, { title: "Auto Glass", items: [{ label: "Windshield Repair", href: "#" }, { label: "Auto Glass Quote", href: "#contact" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] }, { title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
]} ]}
/> />
@@ -178,4 +179,4 @@ export default function LandingPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }