mango-token-sale/components/HeroSection.tsx

34 lines
1.2 KiB
TypeScript
Raw Normal View History

2021-07-08 00:50:33 -07:00
import GradientText from './GradientText'
import Button from './Button'
import Link from './Link'
2021-07-07 04:57:00 -07:00
const HeroSection = () => {
return (
2021-07-16 17:56:26 -07:00
<section className="">
<div className="max-w-6xl px-8 mx-auto">
<div className="relative pt-16 md:pt-32 pb-2">
<div className="mb-8 mx-auto text-left md:text-center lg:text-center">
2021-07-27 14:17:25 -07:00
<h2 className="mb-4 text-3xl md:text-5xl lg:text-5xl text-white font-bold font-heading">
Claim your stake in the <GradientText>Mango DAO</GradientText>.
2021-07-20 07:09:59 -07:00
</h2>
<p className="text-xl md:text-2xl lg:text-2xl text-white text-opacity-70">
2021-07-28 00:39:59 -07:00
Join us in building Mango, the protocol for permissionless
leverage trading &amp; lending.
2021-07-20 07:09:59 -07:00
</p>
2021-07-07 04:57:00 -07:00
</div>
<div className="mb-16 flex lg:flex-row md:flex-row lg:justify-center md:justify-center sm:justify-center">
2021-07-24 06:19:16 -07:00
<a className="sm:px-1" rel="noreferrer" target="_blank" href="#">
<Button>Contribute now</Button>
</a>
<a className="pl-2 " rel="noreferrer" target="_blank" href="#">
<Link>Learn more</Link>
</a>
</div>
2021-07-07 04:57:00 -07:00
</div>
2021-07-20 07:09:59 -07:00
</div>
</section>
2021-07-07 04:57:00 -07:00
)
}
export default HeroSection