Update src/app/contact/page.tsx

This commit is contained in:
2026-03-26 16:32:42 +00:00
parent 8c5af96b33
commit 470a4f0ed6

View File

@@ -5,97 +5,53 @@ import ReactLenis from "lenis/react";
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import { Phone } from "lucide-react";
export default function LandingPage() {
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Services",
id: "/services",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="Walden Ridge"
/>
</div>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Contact", id: "/contact" },
]}
brandName="Walden Ridge"
/>
</div>
<div id="contact-body" data-section="contact-body">
<ContactCenter
useInvertedBackground={false}
background={{
variant: "plain",
}}
tag="Contact Us"
title="Need a Repair? Lets Get It Done."
description="Call us, stop by, or send us a message. We're here to keep your equipment running."
tagIcon={Phone}
/>
</div>
<div id="contact-body" data-section="contact-body">
<ContactCenter
title="Need a Repair? Lets Get It Done."
description="Call us, stop by, or send us a message. We're here to keep your equipment running."
tag="Contact Us"
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "Home",
href: "/",
},
{
label: "About",
href: "/about",
},
{
label: "Services",
href: "/services",
},
{
label: "Contact",
href: "/contact",
},
],
},
{
items: [
{
label: "Lawn Mowers",
href: "/services",
},
{
label: "Chainsaws",
href: "/services",
},
{
label: "Blowers",
href: "/services",
},
],
},
]}
logoText="Walden Ridge"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="Walden Ridge"
columns={[
{ items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Services", href: "/services" }, { label: "Contact", href: "/contact" }] },
{ items: [{ label: "Lawn Mowers", href: "/services" }, { label: "Chainsaws", href: "/services" }, { label: "Blowers", href: "/services" }] }
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}