29 lines
850 B
TypeScript
29 lines
850 B
TypeScript
import ContactCtaSection from "@/app/home/components/ContactCtaSection";
|
|
import CategoryFilters from "./components/CategoryFilters";
|
|
import CategoryHero from "./components/CategoryHero";
|
|
import CategoryProducts from "./components/CategoryProducts";
|
|
import CategoryToolbar from "./components/CategoryToolbar";
|
|
|
|
const CategoryDetailPage = () => {
|
|
return (
|
|
<div>
|
|
<CategoryHero />
|
|
|
|
<div className="px-4 mt-10 sm:px-8 lg:px-30 pt-8 sm:pt-10 pb-8 sm:pb-10">
|
|
<div className="flex flex-col gap-4 lg:flex-row lg:items-start lg:gap-6">
|
|
<CategoryFilters />
|
|
|
|
<div className="min-w-0 w-full flex-1 space-y-4 sm:space-y-5">
|
|
<CategoryToolbar />
|
|
<CategoryProducts />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<ContactCtaSection />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default CategoryDetailPage;
|