Update src/app/page.tsx

This commit is contained in:
2026-03-19 19:33:37 +00:00
parent f2cd54ef94
commit 50d85c7d9f

View File

@@ -42,8 +42,14 @@ export default function LandingPage() {
logoText="ProWash Boca" logoText="ProWash Boca"
description="Professional pressure washing services for your Boca Raton home and business. Residential and commercial cleaning expertise." description="Professional pressure washing services for your Boca Raton home and business. Residential and commercial cleaning expertise."
buttons={[ buttons={[
{ text: "Get Free Quote", href: "#contact" }, { text: "Get Free Quote", onClick: () => {
{ text: "View Services", href: "#features" } const contactSection = document.getElementById('faq');
contactSection?.scrollIntoView({ behavior: 'smooth' });
}},
{ text: "View Services", onClick: () => {
const featuresSection = document.getElementById('features');
featuresSection?.scrollIntoView({ behavior: 'smooth' });
}}
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
background={{ variant: "radial-gradient" }} background={{ variant: "radial-gradient" }}
@@ -178,26 +184,50 @@ export default function LandingPage() {
columns={[ columns={[
{ {
title: "Services", items: [ title: "Services", items: [
{ label: "Residential Cleaning", href: "#features" }, { label: "Residential Cleaning", onClick: () => {
{ label: "Commercial Services", href: "#features" }, const featuresSection = document.getElementById('features');
{ label: "Specialty Cleaning", href: "#features" }, featuresSection?.scrollIntoView({ behavior: 'smooth' });
}},
{ label: "Commercial Services", onClick: () => {
const featuresSection = document.getElementById('features');
featuresSection?.scrollIntoView({ behavior: 'smooth' });
}},
{ label: "Specialty Cleaning", onClick: () => {
const featuresSection = document.getElementById('features');
featuresSection?.scrollIntoView({ behavior: 'smooth' });
}},
{ label: "Emergency Service", href: "#" } { label: "Emergency Service", href: "#" }
] ]
}, },
{ {
title: "Company", items: [ title: "Company", items: [
{ label: "About Us", href: "#about" }, { label: "About Us", onClick: () => {
const aboutSection = document.getElementById('about');
aboutSection?.scrollIntoView({ behavior: 'smooth' });
}},
{ label: "Our Team", href: "#" }, { label: "Our Team", href: "#" },
{ label: "Contact Us", href: "#contact" }, { label: "Contact Us", onClick: () => {
{ label: "Get Quote", href: "#contact" } const faqSection = document.getElementById('faq');
faqSection?.scrollIntoView({ behavior: 'smooth' });
}},
{ label: "Get Quote", onClick: () => {
const faqSection = document.getElementById('faq');
faqSection?.scrollIntoView({ behavior: 'smooth' });
}}
] ]
}, },
{ {
title: "Boca Raton", items: [ title: "Boca Raton", items: [
{ label: "Service Areas", href: "#" }, { label: "Service Areas", href: "#" },
{ label: "Local Reviews", href: "#testimonials" }, { label: "Local Reviews", onClick: () => {
const testimonialsSection = document.getElementById('testimonials');
testimonialsSection?.scrollIntoView({ behavior: 'smooth' });
}},
{ label: "Community", href: "#" }, { label: "Community", href: "#" },
{ label: "FAQ", href: "#faq" } { label: "FAQ", onClick: () => {
const faqSection = document.getElementById('faq');
faqSection?.scrollIntoView({ behavior: 'smooth' });
}}
] ]
} }
]} ]}
@@ -207,4 +237,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }