Merge version_3 into main #3

Merged
bender merged 2 commits from version_3 into main 2026-04-24 18:56:03 +00:00
2 changed files with 81 additions and 0 deletions

View File

@@ -38,6 +38,7 @@ export default function LandscapingPage() {
{ name: "Team", id: "team" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },
{ name: "Payment", id: "/payment" },
]}
button={{ text: "Call Now", href: "#contact" }}
/>

80
src/app/payment/page.tsx Normal file
View File

@@ -0,0 +1,80 @@
"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 PaymentPage() {
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="GreenScape"
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
{ name: "Payment", id: "/payment" },
]}
button={{ text: "Call Now", href: "#contact" }}
/>
</div>
<div id="payment-form" data-section="payment-form" className="pt-32 pb-20">
<ContactSplitForm
title="Secure Payment"
description="Complete your payment details to finalize your service booking with GreenScape. Your information is encrypted and secure."
useInvertedBackground={false}
mediaAnimation="none"
buttonText="Pay Now"
contentClassName="!grid-cols-1 max-w-[600px] mx-auto"
mediaWrapperClassName="hidden"
inputs={[
{ name: "cardholder", type: "text", placeholder: "Cardholder Name", required: true },
{ name: "cardnumber", type: "text", placeholder: "Card Number", required: true },
{ name: "expiry", type: "text", placeholder: "MM/YY", required: true },
{ name: "cvc", type: "text", placeholder: "CVC", required: true },
]}
onSubmit={(data) => console.log("Payment Processing:", data)}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Services", items: [
{ label: "Landscape Design", href: "/services" },
{ label: "Hardscape & Softscape", href: "/services" },
],
},
{
title: "Contact", items: [
{ label: "(555) 123-4567", href: "tel:5551234567" },
{ label: "hello@greenscape.com", href: "mailto:hello@greenscape.com" },
],
},
]}
bottomLeftText="© 2026 GreenScape Landscaping"
bottomRightText="All rights reserved"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}