diff --git a/src/app/order-confirmation/page.tsx b/src/app/order-confirmation/page.tsx deleted file mode 100644 index 956c311..0000000 --- a/src/app/order-confirmation/page.tsx +++ /dev/null @@ -1,54 +0,0 @@ -"use client"; - -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -import ReactLenis from "lenis/react"; -import Link from "next/link"; -import { CheckCircle } from "lucide-react"; - -export default function OrderConfirmationPage() { - const navItems = [ - { name: "Home", href: "/" }, - { name: "Products", href: "/#products" }, - { name: "About Us", href: "/#about" }, - { name: "FAQ", href: "/#faq" }, - { name: "Contact", href: "/#contact" }, - { name: "Cart", href: "/cart" }, - { name: "Checkout", href: "/checkout" } - ]; - - return ( - - - -
- -

Order Confirmed!

-

Thank you for your purchase. Your order has been successfully placed and will be processed shortly.

-

A confirmation email with your order details has been sent to your inbox.

- - Continue Shopping - -
-
-
- ); -}