import { Disclosure } from '@headlessui/react' import { ChevronDownIcon } from '@heroicons/react/20/solid' const FAQS = [ { q: 'How do I participate in rewards?', a: 'Simply by trading on Mango. Points are allocated for spot trades and swaps. Other actions may also earn points. The more volume you do the more points you earn. At the end of each week prizes are distributed to all wallets with points. The more points you have the more prizes you could win.', }, { q: 'What can I win?', a: 'Rewards are distributed as tokens like USDC and/or nfts and can differ from week-to-week.', }, { q: 'What is a rewards season?', a: 'Each weekly cycle is called a Season. They run from midnight Friday UTC to the following midnight Friday UTC.', }, { q: 'What are the rewards tiers?', a: "There are 4 rewards tiers. Everyone starts in the Seed tier. After your first Season is completed you'll be promoted to either the Mango or Whale tier (depending on the average notional value of your swaps/trades). Bots are automatically assigned to the Bots tier and will remain there.", }, { q: 'How do the prizes work?', a: "At the end of each Season loot boxes are distributed based on the amount of points earned relative to the other participants in your tier. Everyone will win one or more prizes so you're guaranteed to get something.", }, { q: 'How do I claim my rewards?', a: 'At the end of each season (midnight Friday UTC) there is a 48 hour window where you can claim your prizes. Come back to this page to claim. If you fail to claim your prizes during this period they will be lost.', }, ] const Faqs = () => { return (

How it Works

Feel free to reach out to us on{' '} Discord {' '} with additional questions.

{FAQS.map((faq, i) => ( {({ open }) => (

{faq.q}

{faq.a}

)}
))}
) } export default Faqs