From 3a6bc8585274f5064742bd0b1bf93c585554a3ed Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 3 Jun 2026 23:58:17 +0000 Subject: [PATCH] Add src/app/payment-processing/page.tsx --- src/app/payment-processing/page.tsx | 119 ++++++++++++++++++++++++++++ 1 file changed, 119 insertions(+) create mode 100644 src/app/payment-processing/page.tsx diff --git a/src/app/payment-processing/page.tsx b/src/app/payment-processing/page.tsx new file mode 100644 index 0000000..468e86f --- /dev/null +++ b/src/app/payment-processing/page.tsx @@ -0,0 +1,119 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import { CreditCard, DollarSign } from "lucide-react"; + +export default function PaymentProcessingPage() { + return ( + + + + +
+
+

Payment Processing

+

Choose your preferred payment method.

+ +
+ {/* Card Payment Section */} +
+

+ Card Payment +

+
+
+ + +
+
+
+ + +
+
+ + +
+
+ +
+
+ + {/* Cash Payment Section */} +
+
+

+ Cash Payment +

+

+ Please present your order details at the counter to complete your cash payment. + Our staff will assist you with the process. +

+

+ Note: Exact change is appreciated for faster service. +

+
+ +
+
+
+
+
+
+ ); +}