24 lines
698 B
JavaScript
24 lines
698 B
JavaScript
import BuyRudrakshaOne from '@/components/buy-rudraksha/BuyRudrakshaOne'
|
|
import PopularRudrakshaCombination from '@/components/buy-rudraksha/PopularRudrakshaCombination'
|
|
import ZodiacBasedSign from '@/components/buy-rudraksha/ZodiacBasedSign'
|
|
import PremiumBannerOne from '@/components/premium-rudraksha/PremiumBannerOne'
|
|
import React from 'react'
|
|
|
|
export const metadata = {
|
|
title: 'Buy Rudraksha Online | Orginal Gupta Rudraksha',
|
|
description: "Generated by create next app",
|
|
}
|
|
|
|
const page = () => {
|
|
return (
|
|
<div className=''>
|
|
<BuyRudrakshaOne />
|
|
<PremiumBannerOne />
|
|
<PopularRudrakshaCombination />
|
|
<ZodiacBasedSign />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default page
|