Update src/app/contact/page.tsx

This commit is contained in:
2026-04-20 15:45:22 +00:00
parent 5b22c8ddb0
commit d5b5dcca36

View File

@@ -26,21 +26,13 @@ export default function LandingPage() {
<NavbarStyleCentered
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "Services",
id: "/services",
},
name: "Services", id: "/services"},
{
name: "About",
id: "/about",
},
name: "About", id: "/about"},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
]}
brandName="Local Rank Experts"
/>
@@ -50,16 +42,13 @@ export default function LandingPage() {
<ContactCTA
useInvertedBackground={false}
background={{
variant: "plain",
}}
variant: "plain"}}
tag="Let's Talk"
title="Book Your Free GBP Audit"
description="Fill out the form below or contact us directly. We respond within 24 hours."
buttons={[
{
text: "Book My Free Audit",
href: "/contact",
},
text: "Book My Free Audit", href: "https://calendly.com/tyler-localrankexperts/30min"},
]}
/>
</div>
@@ -77,37 +66,23 @@ export default function LandingPage() {
logoText="Local Rank Experts"
columns={[
{
title: "Navigation",
items: [
title: "Navigation", items: [
{
label: "Home",
href: "/",
},
label: "Home", href: "/"},
{
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: "tyler@localrankexperts.ca",
href: "mailto:tyler@localrankexperts.ca",
},
label: "tyler@localrankexperts.ca", href: "mailto:tyler@localrankexperts.ca"},
{
label: "localrankexperts.ca",
href: "https://localrankexperts.ca",
},
label: "localrankexperts.ca", href: "https://localrankexperts.ca"},
],
},
]}
@@ -116,4 +91,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}