This commit is contained in:
g
2025-02-07 04:43:47 +00:00
parent d3e19c7e09
commit 6c4f3f0866
94 changed files with 11777 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
import Dashboard from "@/components/kokonutui/dashboard";
import { Package } from "lucide-react";
import OrderTable from "@/components/order-table"
export default function OrdersPage() {
return (
<Dashboard>
<div className="space-y-6">
<div className="flex items-center justify-between">
<h1 className="text-2xl font-semibold text-gray-900 dark:text-white flex items-center">
<Package className="mr-2 h-6 w-6" />
Orders
</h1>
</div>
{/* ✅ Order Table Component */}
<OrderTable />
</div>
</Dashboard>
);
}