Files
ignum/app/[locale]/catalog_page/page.tsx
nabijonovdavronbek619@gmail.com dbe8399086 add catalog filter card
2026-02-07 11:27:13 +05:00

15 lines
411 B
TypeScript

import Catalog from "@/components/pages/home/blog/catalog";
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="max-w-300 mx-auto w-full pt-20">
<MainSubCategory />
</div>
</div>
);
}