Add src/app/dashboard/page.tsx
This commit is contained in:
22
src/app/dashboard/page.tsx
Normal file
22
src/app/dashboard/page.tsx
Normal file
@@ -0,0 +1,22 @@
|
||||
"use client";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
|
||||
export default function DashboardPage() {
|
||||
return (
|
||||
<ThemeProvider>
|
||||
<div className="p-8">
|
||||
<h1 className="text-3xl font-bold mb-8">Dashboard</h1>
|
||||
<div className="grid gap-8">
|
||||
<section className="p-6 border rounded-lg">
|
||||
<h2 className="text-xl font-bold mb-4">Order History</h2>
|
||||
<div className="text-sm text-gray-500">No orders found.</div>
|
||||
</section>
|
||||
<section className="p-6 border rounded-lg">
|
||||
<h2 className="text-xl font-bold mb-4">Upload Payment Confirmation</h2>
|
||||
<input type="file" className="block w-full text-sm" />
|
||||
</section>
|
||||
</div>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user