diff --git a/frontend/src/pages/AIInterviewAnswerDetailCompressionCoach.jsx b/frontend/src/pages/AIInterviewAnswerDetailCompressionCoach.jsx new file mode 100644 index 00000000..7573d74f --- /dev/null +++ b/frontend/src/pages/AIInterviewAnswerDetailCompressionCoach.jsx @@ -0,0 +1,188 @@ +import React, { useState } from "react"; +import { + Brain, + Minimize2, + CheckCircle2, + Clock, + ArrowRight, +} from "lucide-react"; + +export default function AIInterviewAnswerDetailCompressionCoach() { + const [answer, setAnswer] = useState(""); + const [compressed, setCompressed] = useState(false); + + const conciseAnswer = + "I would use caching to reduce repeated database queries, improve API response time, and scale the service efficiently."; + + return ( +
+ Make technical answers shorter without losing important details. +
++ {answer} +
+ ++ {conciseAnswer} +
+ ++ Length Reduction +
++ 62% +
++ Time Saved +
++ 90 sec +
++ Key Content Preserved +
++ 94% +
++ Lead with the main technical decision, explain the key + reasoning once, and provide additional implementation details + only when the interviewer asks for them. +
+