Add src/app/order-confirmation/page.tsx
This commit is contained in:
22
src/app/order-confirmation/page.tsx
Normal file
22
src/app/order-confirmation/page.tsx
Normal file
@@ -0,0 +1,22 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
|
||||
export default function OrderConfirmationPage() {
|
||||
return (
|
||||
<ThemeProvider>
|
||||
<NavbarStyleApple
|
||||
navItems={[{ name: "Home", id: "/" }]}
|
||||
brandName="UniPack"
|
||||
/>
|
||||
<div className="pt-32 pb-20 px-6 container mx-auto text-center">
|
||||
<h1 className="text-5xl font-bold mb-6">Thank You!</h1>
|
||||
<p className="text-xl mb-8">Your order has been placed successfully.</p>
|
||||
<a href="/" className="inline-block bg-primary-cta text-white px-8 py-3 rounded-full font-bold">
|
||||
Back to Home
|
||||
</a>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user