diff --git a/packages/nextjs/components/extensions-hackathon/Faq.tsx b/packages/nextjs/components/extensions-hackathon/Faq.tsx
index c9bb2f1..b90f08d 100644
--- a/packages/nextjs/components/extensions-hackathon/Faq.tsx
+++ b/packages/nextjs/components/extensions-hackathon/Faq.tsx
@@ -1,12 +1,21 @@
const faqData = [
+ {
+ 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:
"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: "Who can participate in this hackathon?",
- answer: "Developers of all skill levels are welcome to participate!",
+ question: "How can I submit my extension?",
+ answer:
+ "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: "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?",
@@ -32,11 +41,6 @@ const faqData = [
answer:
"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!",
},
- {
- question: "What do I need for my submission?",
- answer:
- "You'll need to submit your code repository, a brief project description and a 2 minute video showcasing it.",
- },
];
type FaqItem = {