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"
description="Professional pressure washing services for your Boca Raton home and business. Residential and commercial cleaning expertise."
buttons={[
{ text: "Get Free Quote", href: "#contact" },
{ text: "View Services", href: "#features" }
{ text: "Get Free Quote", onClick: () => {
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"
background={{ variant: "radial-gradient" }}
@@ -178,26 +184,50 @@ export default function LandingPage() {
columns={[
{
title: "Services", items: [
{ label: "Residential Cleaning", href: "#features" },
{ label: "Commercial Services", href: "#features" },
{ label: "Specialty Cleaning", href: "#features" },
{ label: "Residential Cleaning", onClick: () => {
const featuresSection = document.getElementById('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: "#" }
]
},
{
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: "Contact Us", href: "#contact" },
{ label: "Get Quote", href: "#contact" }
{ label: "Contact Us", onClick: () => {
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: [
{ 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: "FAQ", href: "#faq" }
{ label: "FAQ", onClick: () => {
const faqSection = document.getElementById('faq');
faqSection?.scrollIntoView({ behavior: 'smooth' });
}}
]
}
]}
@@ -207,4 +237,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}