mango-web/components/HeroSection.tsx

20 lines
592 B
TypeScript

const HeroSection = () => {
return (
<div className="">
<section className="bg-hero-img bg-no-repeat bg-cover">
<div className="container px-4 mx-auto">
<div className="relative pt-12 md:pt-48 pb-32 lg:pb-48 mb-48 lg:mb-48">
<div className="max-w-2xl mb-16 mx-auto text-center">
<h2 className="mb-8 text-4xl lg:text-5xl text-white font-bold font-heading">
Trading that just feels right.
</h2>
</div>
</div>
</div>
</section>
</div>
)
}
export default HeroSection