8 Commits

Author SHA1 Message Date
c23ab5c79a Switch to version 5: modified src/app/page.tsx 2026-05-07 13:41:39 +00:00
c1ecfe21ec Switch to version 4: modified src/app/page.tsx 2026-05-07 13:41:34 +00:00
d1ffc8d6ee Merge version_5 into main
Merge version_5 into main
2026-05-07 13:36:54 +00:00
ee926cb68e Update src/app/page.tsx 2026-05-07 13:36:50 +00:00
73a3599e92 Merge version_4 into main
Merge version_4 into main
2026-05-07 13:35:29 +00:00
0362cf27ef Update src/app/page.tsx 2026-05-07 13:35:26 +00:00
7318a2c70c Add src/app/contact/page.tsx 2026-05-07 13:35:26 +00:00
efd540427a Merge version_3 into main
Merge version_3 into main
2026-05-07 01:28:23 +00:00
2 changed files with 76 additions and 23 deletions

70
src/app/contact/page.tsx Normal file
View 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>
);
}

View File

@@ -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="Get Your Free Garden Design Consultation"
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"