Update src/app/contact/page.tsx
This commit is contained in:
@@ -26,27 +26,17 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
name: "Services", id: "/services"},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
name: "About", id: "/about"},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "/reviews",
|
||||
},
|
||||
name: "Reviews", id: "/reviews"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
name: "Contact", id: "/contact"},
|
||||
]}
|
||||
brandName="MN Handyman"
|
||||
brandName="MN Handyman Services"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -54,16 +44,13 @@ export default function LandingPage() {
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
variant: "plain"}}
|
||||
tag="Contact"
|
||||
title="Get in Touch"
|
||||
description="Need a handyman in Birmingham? Call us or send a message."
|
||||
buttons={[
|
||||
{
|
||||
text: "Call 07733 312924",
|
||||
href: "tel:07733312924",
|
||||
},
|
||||
text: "Call 07733 312924", href: "tel:07733312924"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -77,15 +64,9 @@ export default function LandingPage() {
|
||||
faqsAnimation="slide-up"
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "What are your hours?",
|
||||
content: "Mon-Fri 8am to 6pm.",
|
||||
},
|
||||
id: "1", title: "What are your hours?", content: "Mon-Fri 8am to 6pm."},
|
||||
{
|
||||
id: "2",
|
||||
title: "How can I pay?",
|
||||
content: "Card or Bank Transfer.",
|
||||
},
|
||||
id: "2", title: "How can I pay?", content: "Card or Bank Transfer."},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -94,40 +75,28 @@ export default function LandingPage() {
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Navigation",
|
||||
items: [
|
||||
title: "Navigation", items: [
|
||||
{
|
||||
label: "Services",
|
||||
href: "/services",
|
||||
},
|
||||
label: "Services", href: "/services"},
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
label: "About", href: "/about"},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
label: "Contact", href: "/contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
title: "Contact", items: [
|
||||
{
|
||||
label: "07733 312924",
|
||||
href: "tel:07733312924",
|
||||
},
|
||||
label: "07733 312924", href: "tel:07733312924"},
|
||||
{
|
||||
label: "Birmingham Based",
|
||||
href: "#",
|
||||
},
|
||||
label: "Birmingham Based", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
logoText="MN Handyman"
|
||||
logoText="MN Handyman Services"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user