21 lines
708 B
JavaScript
21 lines
708 B
JavaScript
import PopularRudrakshaCombination from '@/components/buy-rudraksha/PopularRudrakshaCombination'
|
|
import ExclusiveRudrakshaBanner from '@/components/exclusive-rudraksha/ExclusiveRudrakshaBanner'
|
|
import ListofRudrakshaCard from '@/components/exclusive-rudraksha/ListofRudrakshaCard'
|
|
import WhyShouldChooseUs from '@/components/exclusive-rudraksha/WhyShouldChooseUs'
|
|
import PremiumBannerOne from '@/components/premium-rudraksha/PremiumBannerOne'
|
|
import React from 'react'
|
|
|
|
const page = () => {
|
|
return (
|
|
<div>
|
|
<ExclusiveRudrakshaBanner />
|
|
<ListofRudrakshaCard />
|
|
<WhyShouldChooseUs />
|
|
<PremiumBannerOne />
|
|
<PopularRudrakshaCombination />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default page
|