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" }} /> 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