Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c23ab5c79a | |||
| c1ecfe21ec | |||
| d1ffc8d6ee | |||
| ee926cb68e | |||
| 73a3599e92 | |||
| 0362cf27ef | |||
| 7318a2c70c | |||
| efd540427a | |||
| 8528720ab1 | |||
| 7c846168c4 |
70
src/app/contact/page.tsx
Normal file
70
src/app/contact/page.tsx
Normal file
@@ -0,0 +1,70 @@
|
||||
"use client";
|
||||
|
||||
import ReactLenis from "lenis/react";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
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
|
||||
defaultButtonVariant="expand-hover"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="soft"
|
||||
contentWidth="mediumLarge"
|
||||
sizing="large"
|
||||
background="none"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
brandName="Beach House Landscaping"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/#services" },
|
||||
{ name: "About", id: "/#about" },
|
||||
{ name: "Team", id: "/#team" },
|
||||
{ name: "Reviews", id: "/#testimonials" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
button={{ text: "Get a Quote", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact" className="pt-20 pb-20">
|
||||
<ContactSplitForm
|
||||
title="Contact Us"
|
||||
description="Reach out to our team at +447399858598 to start your project or discuss your vision."
|
||||
useInvertedBackground={false}
|
||||
mediaAnimation="none"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/luxury-holiday-home_23-2151918242.jpg"
|
||||
buttonText="Submit Enquiry"
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Full Name", required: true },
|
||||
{ name: "email", type: "email", placeholder: "Email Address", required: true },
|
||||
{ name: "address", type: "text", placeholder: "Project Address" }
|
||||
]}
|
||||
textarea={{ name: "message", placeholder: "Tell us about your garden vision...", rows: 4, required: true }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{ title: "Services", items: [{ label: "Patio Installation" }, { label: "Garden Clearance" }, { label: "Softscaping" }] },
|
||||
{ title: "Company", items: [{ label: "About" }, { label: "Reviews" }, { label: "Contact", href: "/contact" }] },
|
||||
{ title: "Connect", items: [{ label: "Instagram" }, { label: "Facebook" }] }
|
||||
]}
|
||||
bottomLeftText="© 2026 Beach House Landscaping"
|
||||
bottomRightText="Designed for Excellence"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -37,9 +37,9 @@ export default function LandscapingPage() {
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Team", id: "team" },
|
||||
{ name: "Reviews", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
button={{ text: "Get a Quote", href: "#contact" }}
|
||||
button={{ text: "Get a Quote", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -51,7 +51,7 @@ export default function LandscapingPage() {
|
||||
description="Specialists in bespoke garden transformations, high-end sandstone patios, and refined softscaping. We turn your outdoor space into an extension of your coastal home."
|
||||
buttons={[
|
||||
{ text: "View Our Work", href: "#services" },
|
||||
{ text: "Start Your Project", href: "#contact" },
|
||||
{ text: "Start Your Project", href: "/contact" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/path-way-garden_74190-3730.jpg"
|
||||
@@ -160,8 +160,8 @@ export default function LandscapingPage() {
|
||||
cardTag="Our Reputation"
|
||||
cardTitle="Trusted to transform outdoor spaces one garden at a time."
|
||||
buttons={[
|
||||
{ text: "Get a Quote", href: "#contact" },
|
||||
{ text: "See More Reviews", href: "https://google.com" }
|
||||
{ text: "Get a Quote", href: "/contact" },
|
||||
{ text: "Read Real Client Stories", href: "https://google.com" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
cardAnimation="slide-up"
|
||||
@@ -196,28 +196,11 @@ export default function LandscapingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact" className="relative overflow-hidden">
|
||||
<ContactSplitForm
|
||||
title="Ready for a Transformation?"
|
||||
description="Schedule your consultation with our expert landscaping team today."
|
||||
useInvertedBackground={false}
|
||||
mediaAnimation="none"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/luxury-holiday-home_23-2151918242.jpg"
|
||||
buttonText="Submit Enquiry"
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Full Name", required: true },
|
||||
{ name: "email", type: "email", placeholder: "Email Address", required: true },
|
||||
{ name: "address", type: "text", placeholder: "Project Address" }
|
||||
]}
|
||||
textarea={{ name: "message", placeholder: "Tell us about your garden vision...", rows: 4, required: true }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{ title: "Services", items: [{ label: "Patio Installation" }, { label: "Garden Clearance" }, { label: "Softscaping" }] },
|
||||
{ title: "Company", items: [{ label: "About" }, { label: "Reviews" }, { label: "Contact" }] },
|
||||
{ title: "Company", items: [{ label: "About" }, { label: "Reviews" }, { label: "Contact", href: "/contact" }] },
|
||||
{ title: "Connect", items: [{ label: "Instagram" }, { label: "Facebook" }] }
|
||||
]}
|
||||
bottomLeftText="© 2026 Beach House Landscaping"
|
||||
@@ -227,4 +210,4 @@ export default function LandscapingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user