diff --git a/packages/nextjs/components/extensions-hackathon/Faq.tsx b/packages/nextjs/components/extensions-hackathon/Faq.tsx index e32ef4a..b90f08d 100644 --- a/packages/nextjs/components/extensions-hackathon/Faq.tsx +++ b/packages/nextjs/components/extensions-hackathon/Faq.tsx @@ -1,28 +1,45 @@ const faqData = [ { - question: "What's SE-2?", + question: "Who can participate in this hackathon?", + answer: "Everyone! Developers of all skill levels are welcome to participate.", + }, + { + question: "What makes a good Scaffold-ETH 2 extension?", answer: - "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.", + "A good extension typically involves contract and front-end interaction. It should solve a real problem or enhance the developer experience.

Examples include implementing your favourite EIP, adding a useful kit that extends Scaffold-ETH 2's capabilities or implementing a Solidity by Example application.

You can check our curated extensions branches to get some inspiration: eip-712, erc-20, onchainkit, ponder or subgraph are extensions that are already available.", }, { - question: "What are SE-2 extensions?", + question: "How can I submit my extension?", answer: - "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", + "You can send you submission in the submission page. You'll your code repository, a brief project description and a 2 minute video showcasing it.", }, { - question: "What do I have to do to participate?", + question: "Can I submit more than one extension?", + answer: "Yes, you can submit as many extensions as you want! But we encourage quality over quantity.", + }, + { + question: "Can I work in a team?", answer: - "Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Lorem ipsum dolor sit amet, consectetur adipiscing elit.", + "Yes, you can work individually or in teams. We encourage collaboration! Find your partners in telegram", }, { - question: "Are there any rules for the extension?", + question: "How will projects be judged?", answer: - "Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam. Eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.", + "Projects will be evaluated by a commitee based on innovation, technical complexity, use of Scaffold-ETH 2 capabilities, and potential impact to the ecosystem.", + }, + { + question: "Will there be mentors or technical support available?", + answer: + "Yes, we'll have mentors and technical support available throughout the hackathon to assist participants.
Scaffold-ETH 2 documentation, tutorials, and a dedicated support channel are available.", + }, + { + question: "Is there a registration fee?", + answer: "No, participation in the hackathon is free of charge.", }, { - question: "What makes a good extension?", + question: "Do I need to know Solidity or other tech stack to participate?", answer: - "Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit.", + "You can create a useful Scaffold-ETH 2 extension even without a contract!
We'd recommend doing some challenges of SpeedRunEthereum to get familiar with Scaffold-ETH 2, but totally fine if you can't!", }, ]; @@ -52,8 +69,8 @@ export const Faq = () => { -
-

{item.answer}

+
+

{index !== faqData.length - 1 &&
}