refactor: add category and sub-cagory page for collections

This commit is contained in:
2025-05-14 00:51:54 +05:30
parent ffc880f6f8
commit a8f7a7bc14
7 changed files with 304 additions and 2 deletions

View File

@@ -0,0 +1,19 @@
import FaqCard from '@/components/common-components/FaqCard'
import SubcategoryList from '@/components/category/SubcategoryList'
import CategoryHero from '@/components/siddha-mala/categoryHero'
export const metadata = {
title: 'Buy Gupta Siddha mala(1 to 14 mukhi) 100% X-Ray Certified Authentic',
description: "Generated by create next app",
}
const Page = ({params}) => {
return (
<div>
<CategoryHero params={params}/>
<SubcategoryList params={params}/>
</div>
)
}
export default Page