From 1de12a3a1a206f175753d52e61be1283db51be0d Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 4 Jun 2026 00:00:56 +0000 Subject: [PATCH] Switch to version 1: remove src/app/payment-processing/page.tsx --- src/app/payment-processing/page.tsx | 119 ---------------------------- 1 file changed, 119 deletions(-) delete mode 100644 src/app/payment-processing/page.tsx diff --git a/src/app/payment-processing/page.tsx b/src/app/payment-processing/page.tsx deleted file mode 100644 index 468e86f..0000000 --- a/src/app/payment-processing/page.tsx +++ /dev/null @@ -1,119 +0,0 @@ -"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. -

-
- -
-
-
-
-
-
- ); -}