"use client"; import { AlertTriangle } from "lucide-react"; import { motion } from "framer-motion"; import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; export function DefenderPanel({ coreStrength, warnings, }: { coreStrength: string; warnings: string[]; }) { return ( Act 3 — Defender Response

What Must Be Preserved

{coreStrength}

{warnings.map((warning) => (

{warning}

))}
); }