import {
Accordion,
AccordionContent,
AccordionItem,
AccordionTrigger,
} from “./ui/accordion”;

export function FAQ() {
const faqs = [
{
question: “Who can join the ChefsTemp Affiliate Program?”,
answer: “Anyone with a platform to promote ChefsTemp products! This includes bloggers, content creators, influencers, YouTubers, and website owners in the food, cooking, grilling, or lifestyle niches.”,
},
{
question: “How much can I earn?”,
answer: “You can earn between 10-25% commission on every sale, depending on your monthly sales volume. There’s no cap on earnings.”,
},
{
question: “When and how do I get paid?”,
answer: “Commissions are paid monthly via PayPal, bank transfer, or check. Payments are processed within the first 10 days of each month for the previous month’s earnings. Minimum payout is $50.”,
},
{
question: “What marketing materials do you provide?”,
answer: “We provide high-quality product images, banner ads in various sizes, product videos, promotional copy, and seasonal campaign assets. All materials are professionally designed and optimized for conversions.”,
},
];

return (

Veelgestelde vragen

{faqs.map((faq, index) => (

{faq.question}

{faq.answer}

))}

);
}