diff --git a/frontend/src/pages/AIInterviewAnswerMissingContextDetector.jsx b/frontend/src/pages/AIInterviewAnswerMissingContextDetector.jsx new file mode 100644 index 00000000..17739b8e --- /dev/null +++ b/frontend/src/pages/AIInterviewAnswerMissingContextDetector.jsx @@ -0,0 +1,203 @@ +import React, { useState } from "react"; +import { + Brain, + Target, + AlertTriangle, + CheckCircle2, +} from "lucide-react"; + +const contextItems = [ + ["Requirements", "Covered"], + ["Constraints", "Missing"], + ["Environment", "Partial"], + ["Assumptions", "Missing"], + ["Use Case", "Covered"], +]; + +export default function AIInterviewAnswerMissingContextDetector() { + const [answer, setAnswer] = useState(""); + const [analyzed, setAnalyzed] = useState(false); + + return ( +
+ + {/* Header */} +
+ +
+ +
+ +
+

+ AI Missing Context Detector +

+ +

+ Find important context missing from your interview answer. +

+
+ +
+ + {/* Question */} +
+ +

+ Interview Question +

+ +

+ How would you design a system to handle millions of API requests? +

+ +
+ + {/* Answer */} +
+ +

+ Your Answer +

+ +