15 lines
403 B
TypeScript
15 lines
403 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">
|
|
<Catalog />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|