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. -

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