Files
ignum/app/[locale]/catalog_page/page.tsx
2026-03-07 16:31:18 +05:00

19 lines
494 B
TypeScript

import { Breadcrumb } from "@/components/breadCrumb";
import Catalog from "@/pages/home/blog/catalog";
import { ProductBanner } from "@/pages/products";
import { MainSubCategory } from "@/pages/subCategory";
export default function Page() {
return (
<div className="bg-[#1e1d1c] pb-30">
<ProductBanner />
<div className="max-w-300 mx-auto w-full pt-5">
<div className="pb-8">
<Breadcrumb />
</div>
<Catalog />
</div>
</div>
);
}