const faqs = [ { id: 1, question: "What's the best thing about Switzerland?", answer: "I don't know, but the flag is a big plus. Lorem ipsum dolor sit amet consectetur adipisicing elit. Quas cupiditate laboriosam fugiat.", }, // More questions... ] export default function Example() { return (

Frequently asked questions

Have a different question and can’t find the answer you’re looking for? Reach out to our support team by{' '} sending us an email {' '} and we’ll get back to you as soon as we can.

{faqs.map((faq) => (
{faq.question}
{faq.answer}
))}
) }