Files
rudarksh-frontend/components/about-us/AboutTopBanner.jsx
2025-02-19 17:00:55 +05:30

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'>&quot;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.&quot;</h1>
<h2 className='sm:text-sm text-xs'>- Late Mr. Balaram Khatiwada (Founding Father, Gupta Rudraksha)</h2>
</div>
)
}
export default AboutUsTopBanner