Update src/app/contact/page.tsx

This commit is contained in:
2026-04-07 03:46:44 +00:00
parent be083ab46e
commit e2c788b3d6

View File

@@ -8,21 +8,22 @@ import FooterSimple from "@/components/sections/footer/FooterSimple";
export default function ContactPage() {
return (
<ThemeProvider>
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ReactLenis root>
<NavbarStyleFullscreen
brandName="GreenScape"
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Home", id: "/" },
{ name: "Projects", id: "/projects" },
{ name: "Testimonials", id: "/testimonials" },
{ name: "Contact", id: "/contact" },
{ name: "Contact", id: "/contact" }
]}
brandName="GreenScape"
button={{ text: "Call Now", href: "/contact" }}
/>
/>
</div>
<ContactSplitForm
<div id="contact" data-section="contact">
<ContactSplitForm
title="Contact Our Local Experts"
description="Serving Los Angeles and surrounding areas. Get your professional landscaping estimate today."
inputs={[
@@ -31,13 +32,17 @@ export default function ContactPage() {
{ name: "service", type: "text", placeholder: "Service Required" }
]}
textarea={{ name: "message", placeholder: "How can we help with your landscape?" }}
/>
useInvertedBackground={false}
/>
</div>
<FooterSimple
<div id="footer" data-section="footer">
<FooterSimple
columns={[]}
bottomLeftText="© 2026 GreenScape Landscaping"
bottomRightText="All rights reserved"
/>
/>
</div>
</ReactLenis>
</ThemeProvider>
);