mango-token-sale/components/ModalSection.tsx

22 lines
679 B
TypeScript
Raw Normal View History

2021-07-22 09:39:55 -07:00
import ContributionModal from './ContributionModal'
2021-07-22 00:44:52 -07:00
const ModalSection = () => {
return (
2021-07-22 09:39:55 -07:00
<>
<div className="max-w-5xl px-8 mx-auto text-center">
<h2 className="mb-8 text-3xl md:text-4xl lg:text-4xl text-white font-bold font-heading">
2021-07-22 09:39:55 -07:00
It is still the early days.
</h2>
<p className="mb-8 text-xl md:text-2xl lg:text-2xl text-white text-opacity-50">
2021-07-22 09:39:55 -07:00
This is the first moment for non-developers to participate in helping
build the Mango protocol by supporting the inception of the protocols
Insurance Fund.
</p>
</div>
<ContributionModal />
</>
2021-07-22 00:44:52 -07:00
)
}
export default ModalSection