diff --git a/src/app/customer-display/page.tsx b/src/app/customer-display/page.tsx deleted file mode 100644 index 29f2d58..0000000 --- a/src/app/customer-display/page.tsx +++ /dev/null @@ -1,77 +0,0 @@ -"use client"; - -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; -import { CreditCard, History } from "lucide-react"; - -export default function CustomerDisplayPage() { - return ( - - - - -
-
-

Customer Display

-

View your order status and payment information.

- -
-
-

- Order Status -

-
-

Order ID: #123456789

-

Status: Processing

-

Items: 3

-

Estimated Delivery: 2-3 business days

-
-
- -
-

- Payment Information -

-
-

Amount Due: €125.00

-

Payment Method: Credit Card (**** **** **** 1234)

-

Transaction ID: TXN-987654321

-

Payment Status: Authorized

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