Add src/app/contact/page.tsx

This commit is contained in:
2026-04-07 03:46:15 +00:00
parent 554961b017
commit eed4874451

44
src/app/contact/page.tsx Normal file
View File

@@ -0,0 +1,44 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
import FooterSimple from "@/components/sections/footer/FooterSimple";
export default function ContactPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarStyleFullscreen
brandName="GreenScape"
navItems={[
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Projects", id: "/projects" },
{ name: "Testimonials", id: "/testimonials" },
{ name: "Contact", id: "/contact" },
]}
button={{ text: "Call Now", href: "/contact" }}
/>
<ContactSplitForm
title="Contact Our Local Experts"
description="Serving Los Angeles and surrounding areas. Get your professional landscaping estimate today."
inputs={[
{ name: "name", type: "text", placeholder: "Full Name", required: true },
{ name: "email", type: "email", placeholder: "Email", required: true },
{ name: "service", type: "text", placeholder: "Service Required" }
]}
textarea={{ name: "message", placeholder: "How can we help with your landscape?" }}
/>
<FooterSimple
columns={[]}
bottomLeftText="© 2026 GreenScape Landscaping"
bottomRightText="All rights reserved"
/>
</ReactLenis>
</ThemeProvider>
);
}