diff --git a/frontend/src/pages/AIInterviewAnswerClaimVerificationCoach.jsx b/frontend/src/pages/AIInterviewAnswerClaimVerificationCoach.jsx new file mode 100644 index 00000000..7adc1d73 --- /dev/null +++ b/frontend/src/pages/AIInterviewAnswerClaimVerificationCoach.jsx @@ -0,0 +1,216 @@ +import React, { useState } from "react"; +import { + Brain, + ShieldCheck, + AlertTriangle, + CheckCircle2, + Target, +} from "lucide-react"; + +const claims = [ + { + claim: "Improved API performance significantly.", + status: "Needs Evidence", + detail: "Add before/after latency or throughput measurements.", + }, + { + claim: "Reduced database load using caching.", + status: "Supported", + detail: "Technical reasoning is clearly explained.", + }, + { + claim: "The system can handle millions of users.", + status: "Needs Context", + detail: "Mention traffic assumptions, capacity, or test results.", + }, +]; + +export default function AIInterviewAnswerClaimVerificationCoach() { + const [answer, setAnswer] = useState(""); + const [analyzed, setAnalyzed] = useState(false); + + return ( +
+ + {/* Header */} +
+ +
+ +
+ +
+

+ AI Claim Verification Coach +

+ +

+ Strengthen technical and professional claims with supporting + evidence. +

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

+ Interview Question +

+ +

+ Tell me about a project where you made a significant performance + improvement. +

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

+ Your Answer +

+ +