Update src/app/services/page.tsx

This commit is contained in:
2026-04-07 16:28:39 +00:00
parent f47b2fd4a8
commit f47789a1f7

View File

@@ -25,26 +25,11 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Services",
id: "/services",
},
{
name: "Vacation Rental",
id: "/vacation-rental",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "Vacation Rental", id: "/vacation-rental" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" }
]}
brandName="Palm Breeze Maids"
/>
@@ -54,7 +39,6 @@ export default function LandingPage() {
<TextAbout
useInvertedBackground={false}
title="Professional Cleaning Services"
description="Tailored solutions for your residential home or rental property."
/>
</div>
@@ -66,16 +50,8 @@ export default function LandingPage() {
description="What to expect from our standard and deep cleanings."
faqsAnimation="slide-up"
faqs={[
{
id: "s1",
title: "Standard Cleaning",
content: "Dusting, vacuuming, and surface sanitization.",
},
{
id: "s2",
title: "Deep Cleaning",
content: "Comprehensive deep scrub of bathrooms and kitchen.",
},
{ id: "s1", title: "Standard Cleaning", content: "Dusting, vacuuming, and surface sanitization." },
{ id: "s2", title: "Deep Cleaning", content: "Comprehensive deep scrub of bathrooms and kitchen." }
]}
/>
</div>
@@ -83,32 +59,8 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterBase
columns={[
{
title: "Services",
items: [
{
label: "House Cleaning",
href: "/services",
},
{
label: "Vacation Rentals",
href: "/vacation-rental",
},
],
},
{
title: "Support",
items: [
{
label: "Contact",
href: "/contact",
},
{
label: "FAQ",
href: "/faq",
},
],
},
{ title: "Services", items: [{ label: "House Cleaning", href: "/services" }, { label: "Vacation Rentals", href: "/vacation-rental" }] },
{ title: "Support", items: [{ label: "Contact", href: "/contact" }, { label: "FAQ", href: "/faq" }] }
]}
logoText="Palm Breeze Maids"
/>
@@ -116,4 +68,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}