+
+
Q{`${questionNumber}. `}
+ {`${question.question}`}
+
+
+
{
+ question.tags.map((tag,index) => {
+ return
+ })
+ }
+
+
+ {/* {image_link && (
+

+ )} */}
+
+ {optionsArr.map((option, index) => (
+
+
answerCheck(option)}
+ className={cn(
+ "flex flex-row font-outfit font-medium mx-2 my-2.5 rounded-3xl bg-zinc-800 lg:px-20 px-5 py-5 active:scale-90 transition-transform",
+ {
+ "bg-green-900": selectedAnswers.includes(option),
+ "bg-blue-900": answers.length != 0 && answers.includes(option),
+ "bg-red-900": answers.length != 0 && !answers.includes(option),
+ "text-gray-200": answers,
+ }
+ )}
+ >
+
+ {option}
+
+
+ ))}
+
+
+ GateOverflow
+
+
+
+ {/* */}
+
+ Gemini : {geminiResponse}
+
+
+
+ );
+}
diff --git a/components/ui/SearchBar.tsx b/components/ui/SearchBar.tsx
new file mode 100644
index 0000000..12b5dfa
--- /dev/null
+++ b/components/ui/SearchBar.tsx
@@ -0,0 +1,13 @@
+import { useState } from "react";
+
+type SearchBarProps = {
+}
+export default function SearchBar() {
+ const [value, setValue] = useState('');
+ return (
+