chore: setup project for production

This commit is contained in:
afnaann
2025-02-19 17:00:55 +05:30
commit 12caeee710
271 changed files with 16199 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
import FaqCard from '@/components/common-components/FaqCard'
import ExploreSiddhaMala from '@/components/siddha-mala/ExploreSiddhamala'
import SiddhaThree from '@/components/siddha-mala/SiddhaThree'
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}/>
<ExploreSiddhaMala params={params}/>
<FaqCard params={params}/>
</div>
)
}
export default Page