13 lines
618 B
JavaScript
13 lines
618 B
JavaScript
import React from 'react'
|
|
|
|
const AboutUsTopBanner = () => {
|
|
return (
|
|
<div className='min-h-[30vh] text-[#b68d40] bg-[#122620] flex flex-col justify-center items-center'>
|
|
<h1 className=' sm:text-2xl text-sm sm:w-3/5 text-center mx-auto'>"Rudraksha is merely a seed for some and for some it is the majestic bead that changed their life. It is therefore the way you wear, energize and select the Rudraksha that makes the difference."</h1>
|
|
<h2 className='sm:text-sm text-xs'>- Late Mr. Balaram Khatiwada (Founding Father, Gupta Rudraksha)</h2>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default AboutUsTopBanner
|