import React, { useState } from "react"; import { Card, CardContent } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import { Input } from "@/components/ui/input"; import { Textarea } from "@/components/ui/textarea"; const questions = [ { question: "तुम्हारा पसंदीदा खाना कौन सा है?", options: ["पिज़्ज़ा", "बिरयानी", "राजमा चावल", "खुद का जवाब लिखें"] }, { question: "तुम किस तरह की फिल्में देखना पसंद करते हो?", options: ["कॉमेडी", "रोमांटिक", "थ्रिलर", "खुद का जवाब लिखें"] }, { question: "तुम्हें घूमने के लिए कौन सी जगह पसंद है?", options: ["पहाड़", "समंदर", "गांव", "खुद का जवाब लिखें"] }, { question: "तुम्हारा सपना क्या है?", options: ["आईएएस बनना", "बिज़नेसमैन", "साफ-सुथरी ज़िंदगी", "खुद का जवाब लिखें"] }, {...
टिप्पणियाँ
एक टिप्पणी भेजें