Add src/app/dashboard/page.tsx

This commit is contained in:
2026-05-17 16:28:01 +00:00
parent 80272ba985
commit eb9e50d0d6

View 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>
);
}