Skip to content

Commit

Permalink
chore: update code
Browse files Browse the repository at this point in the history
  • Loading branch information
camewell071 committed Feb 2, 2024
1 parent 80d618f commit 45e32fd
Showing 1 changed file with 29 additions and 29 deletions.
58 changes: 29 additions & 29 deletions src/modules/Whitelist/FAQContent/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,35 @@ const FAQContent: React.FC = (): React.ReactElement => {
)}
</AccordionItem>

<AccordionItem className={s.faqItem}>
{({ isExpanded }) => (
<>
<h2>
<AccordionButton justifyContent={'space-between'}>
<span className={s.faqTitle}>
How much is my $BVM allocation based on my contribution?
</span>
<button>
<img
className={isExpanded ? s.downArrow : ''}
src={`${CDN_URL}/icons/chevron-right-ic-32.svg`}
alt="chevron-right-ic"
/>
</button>
</AccordionButton>
</h2>
<AccordionPanel>
<p className={s.faqContent}>
Your $BVM allocation will be determined based on the total fund raised at the end of the public sale<br/>
</p>
<p className={s.faqContent}>
Your $BVM allocation = (Your contribution amount / Total contribution at the end) * 15M $BVM
</p>
</AccordionPanel>
</>
)}
</AccordionItem>

<AccordionItem className={s.faqItem}>
{({ isExpanded }) => (
<>
Expand Down Expand Up @@ -402,35 +431,6 @@ const FAQContent: React.FC = (): React.ReactElement => {
)}
</AccordionItem>
)}

<AccordionItem className={s.faqItem}>
{({ isExpanded }) => (
<>
<h2>
<AccordionButton justifyContent={'space-between'}>
<span className={s.faqTitle}>
How much is my $BVM allocation based on my contribution?
</span>
<button>
<img
className={isExpanded ? s.downArrow : ''}
src={`${CDN_URL}/icons/chevron-right-ic-32.svg`}
alt="chevron-right-ic"
/>
</button>
</AccordionButton>
</h2>
<AccordionPanel>
<p className={s.faqContent}>
Your $BVM allocation will be determined based on the total fund raised at the end of the public sale<br/>
</p>
<p className={s.faqContent}>
Your $BVM allocation = (Your contribution amount / Total contribution at the end) * 15M $BVM
</p>
</AccordionPanel>
</>
)}
</AccordionItem>
</Accordion>
</div>
</div>
Expand Down

0 comments on commit 45e32fd

Please sign in to comment.