diff --git a/src/app/order-history/page.tsx b/src/app/order-history/page.tsx deleted file mode 100644 index 87cdd20..0000000 --- a/src/app/order-history/page.tsx +++ /dev/null @@ -1,119 +0,0 @@ -"use client"; - -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; -import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; - -export default function OrderHistoryPage() { - // Placeholder for order history data - const orders = [ - { id: "ORD001", date: "2024-03-15", total: "$1,250", status: "Delivered", items: ["Chronos Elegance Watch"] }, - { id: "ORD002", date: "2024-02-28", total: "$450", status: "Shipped", items: ["Versailles Silk Scarf"] }, - { id: "ORD003", date: "2024-01-10", total: "$8,900", status: "Delivered", items: ["Empress Alligator Handbag"] }, - ]; - - return ( - - - - -
-

Your Order History

- { - orders.length === 0 ? ( -

You haven't placed any orders yet.

- ) : ( -
- {orders.map((order) => ( -
-
-

Order ID: {order.id}

- {order.status} -
-

Date: {order.date}

-

Total: {order.total}

-
-

Items:

-
    - {order.items.map((item, index) => ( -
  • {item}
  • - ))} -
-
-
- ))} -
- ) - } -
- - -
-
- ); -}