From 3ac1f5e13e5e5f1fa34d7fa80bd77186a761177c Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 24 Apr 2026 18:55:56 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/page.tsx b/src/app/page.tsx index c4dd845..77a4c1c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -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" }} /> -- 2.49.1 From 55acf8acba468a69d7d34dfd42b5896ca56c02ab Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 24 Apr 2026 18:55:57 +0000 Subject: [PATCH 2/2] Add src/app/payment/page.tsx --- src/app/payment/page.tsx | 80 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 src/app/payment/page.tsx diff --git a/src/app/payment/page.tsx b/src/app/payment/page.tsx new file mode 100644 index 0000000..791e1a6 --- /dev/null +++ b/src/app/payment/page.tsx @@ -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 ( + + + + +
+ console.log("Payment Processing:", data)} + /> +
+ + +
+
+ ); +} \ No newline at end of file -- 2.49.1