diff --git a/src/app/seller-dashboard/page.tsx b/src/app/seller-dashboard/page.tsx new file mode 100644 index 0000000..c28fbbd --- /dev/null +++ b/src/app/seller-dashboard/page.tsx @@ -0,0 +1,86 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import HeroBillboardDashboard from '@/components/sections/hero/HeroBillboardDashboard'; +import { Hexagon, House, ShoppingCart, BarChart3, Settings, CircleDollarSign, ShoppingBag, TrendingUp, Package, Bell, MoreVertical, Gauge, HelpCircle, Smartphone } from "lucide-react"; + +export default function SellerDashboardPage() { + return ( + + + +
+ +
+
+ ); +}