diff --git a/src/app/seller-dashboard/page.tsx b/src/app/seller-dashboard/page.tsx index a9c66c5..12f338c 100644 --- a/src/app/seller-dashboard/page.tsx +++ b/src/app/seller-dashboard/page.tsx @@ -4,16 +4,16 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import MediaAbout from '@/components/sections/about/MediaAbout'; -import ProductCardThree from '@/components/sections/product/ProductCardThree'; -import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; -import { BarChart3, User, ShoppingBag, Settings } from "lucide-react"; +import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; +import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; +import { BarChart3, User, ShoppingBag } from "lucide-react"; export default function SellerDashboardPage() { return ( @@ -37,37 +38,36 @@ export default function SellerDashboardPage() {
-
-
- +
diff --git a/src/app/stores/[id]/page.tsx b/src/app/stores/[id]/page.tsx index c3c2e4c..c478b7b 100644 --- a/src/app/stores/[id]/page.tsx +++ b/src/app/stores/[id]/page.tsx @@ -1,39 +1,35 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import { useParams } from "next/navigation"; -import ReactLenis from "lenis/react"; -import ProductCatalog from "@/components/ecommerce/productCatalog/ProductCatalog"; -import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; - -export default function SellerStorefront() { - const { id } = useParams(); +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +export default function StorePage({ params }: { params: { id: string } }) { return ( - - - + +
+

Store {params.id}

+
); } \ No newline at end of file