import { ChevronDownIcon } from '@heroicons/react/solid' import GradientText from './GradientText' import Button from './Button' function scrollToId(id: string) { const element = document.getElementById(id) const y = element.getBoundingClientRect().top + window.scrollY window.scroll({ top: y, behavior: 'smooth', }) } const HeroSection = () => { return (

Claim your stake in the Mango DAO.

Join us in building Mango, the protocol for permissionless leverage trading & lending.

scrollToId('contribute')}> scrollToId('about')} >
Learn More
) } export default HeroSection