catalog connected to backend

This commit is contained in:
nabijonovdavronbek619@gmail.com
2026-02-06 18:57:47 +05:00
parent e99df29b81
commit d4a242b169
18 changed files with 262 additions and 63 deletions

View File

@@ -0,0 +1,13 @@
import { ProductBanner } from "@/components/pages/products";
import { MainSubCategory } from "@/components/pages/subCategory";
export default function Page() {
return (
<div className="bg-[#1e1d1c] pb-30">
<ProductBanner />
<div className="py-20">
<MainSubCategory />
</div>
</div>
);
}