Update src/app/contact/page.tsx
This commit is contained in:
@@ -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="Let's Get Started"
|
||||
description="Contact us today for a personalized quote for your cleaning needs."
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -66,16 +50,8 @@ export default function LandingPage() {
|
||||
description="Getting in touch is simple."
|
||||
faqsAnimation="slide-up"
|
||||
faqs={[
|
||||
{
|
||||
id: "c1",
|
||||
title: "How do I get a quote?",
|
||||
content: "Fill out our booking form or call us directly.",
|
||||
},
|
||||
{
|
||||
id: "c2",
|
||||
title: "Do you offer weekends?",
|
||||
content: "We are open 7 days a week to support your schedule.",
|
||||
},
|
||||
{ id: "c1", title: "How do I get a quote?", content: "Fill out our booking form or call us directly." },
|
||||
{ id: "c2", title: "Do you offer weekends?", content: "We are open 7 days a week to support your schedule." }
|
||||
]}
|
||||
/>
|
||||
</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>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user