add faq questions

This commit is contained in:
saml33 2023-09-29 22:39:48 +10:00
parent b136f2018c
commit 0491b79daf
2 changed files with 14 additions and 6 deletions

View File

@ -6,7 +6,7 @@ const Footer = () => {
rel="noopener noreferrer"
target="_blank"
>
<span className="font-bold">Powered by 🥭</span>
<span className="font-medium">Powered by 🥭</span>
</a>
</div>
)

View File

@ -2,16 +2,24 @@ import { Disclosure } from '@headlessui/react'
import { ChevronDownIcon } from '@heroicons/react/20/solid'
const FAQS = [
{ question: 'FAQ 1', answer: 'Answer' },
{ question: 'FAQ 2', answer: 'Answer' },
{ question: 'FAQ 3', answer: 'Answer' },
{ question: 'FAQ 4', answer: 'Answer' },
{ question: 'How does Boost! work?', answer: 'Answer' },
{ question: 'How does unboosting work?', answer: 'Answer' },
{ question: 'What are the risks?', answer: 'Answer' },
{ question: 'Where does the yield come from?', answer: 'Answer' },
{
question: 'Why is the max leverage different between tokens?',
answer: 'Answer',
},
{ question: 'Will there be more tokens added?', answer: 'Answer' },
{ question: 'Why is my Ledger not working with Boost!?', answer: 'Answer' },
{ question: 'Is the contract audited?', answer: 'Answer' },
{ question: 'Who made Boost!?', answer: 'Answer' },
]
const FaqsPage = () => {
return (
<div className="rounded-2xl border-2 border-th-fgd-1 bg-th-bkg-1 p-6">
<h1>FAQs</h1>
<h1 className="mb-1">FAQs</h1>
<p className="mb-4">Need more info? Reach out to us on ...</p>
<div className="space-y-2">
{FAQS.map((faq) => {