const formQuestions: IQuestion[] = [ { id: 'q1', question: 'Do you actively invest or trade in DeFi (Decentralized Finance)?', answers: ['Yes', 'No'], type: 'radio', hasOther: false, page: 1, userAnswer: undefined, }, { id: 'q2', question: 'Have you ever tried to create an automation or trading strategy in the DeFi market?', answers: ['Yes, frequently', 'Yes, occasionally', 'No, never'], type: 'radio', hasOther: false, page: 1, userAnswer: undefined, }, { id: 'q3', question: 'What is your experience with programming?', answers: ['None', 'Basic', 'Intermediate', 'Advanced'], type: 'radio', hasOther: false, page: 1, userAnswer: undefined, }, { id: 'q4', question: 'How would you rate your knowledge of the DeFi markets?', answers: ['Basic', 'Intermediate', 'Advanced'], type: 'radio', hasOther: false, page: 1, userAnswer: undefined, }, { id: 'q5', question: 'Which aspects of the DeFi market interest you the most?', answers: ['Short-term trading (day trading)', 'Long-term investments', 'Staking', 'Yield farming'], type: 'checkbox', hasOther: true, page: 2, userAnswer: undefined, }, { id: 'q6', question: 'Would you use a tool that allows you to create DeFi investment strategies using natural language, without needing to code?', answers: ['Definitely yes', 'Probably yes', 'Probably no', 'Definitely no'], type: 'radio', hasOther: false, page: 2, userAnswer: undefined, }, { id: 'q7', question: 'Which features would be most important to you in such a tool?', answers: [ 'Ease of use', 'A wide selection of ready-made strategy templates', 'Integration with popular DeFi platforms', 'Speed and efficiency in executing orders', 'Security and privacy protection', ], type: 'checkbox', hasOther: true, page: 2, userAnswer: undefined, }, { id: 'q8', question: 'How important is it for you to make quick investment decisions based on market events or on-chain events?', answers: ['Very important', 'Somewhat important', 'Not very important', 'Not important at all'], type: 'radio', hasOther: false, page: 3, userAnswer: undefined, }, { id: 'q9', question: 'On average, what is the value of a single transaction you make in DeFi?', answers: ['Less than $100', '$100 - $1,000', '$1,000 - $10,000', 'More than $10,000'], type: 'radio', hasOther: false, page: 3, userAnswer: undefined, }, { id: 'q10', question: 'On average, how many transactions do you make daily in DeFi?', answers: ['1-5', '6-10', '11-20', 'More than 20'], type: 'radio', hasOther: false, page: 3, userAnswer: undefined, }, { id: 'q11', question: 'What sources of information about the DeFi market are most important to you?', answers: [ 'News sites and industry portals', 'Social media (Twitter, Reddit, etc.)', 'Blogs and newsletters', 'Discussion groups and forums', ], type: 'checkbox', hasOther: true, page: 3, userAnswer: undefined, }, { id: 'q12', question: 'How would you rate your knowledge of the DeFi markets?', answers: ['None', 'Basic', 'Intermediate', 'Advanced'], type: 'radio', hasOther: false, page: 3, userAnswer: undefined, }, ] export default formQuestions