Kraft102's picture
fix(frontend): copy widgets locally for Vercel deployment
49f9107
// PTAM.tsx - Predictive Threat Anticipation Matrix
import React from 'react';
import { Shield } from 'lucide-react';
export default function PTAM() {
return (
<div className="h-full bg-gradient-to-br from-red-950 via-orange-950 to-black text-white p-6">
<h2 className="text-2xl font-bold flex items-center gap-2 mb-4">
<Shield className="text-red-400" />
PTAM - Threat Anticipation
</h2>
<div className="bg-red-900/30 p-4 rounded-lg">
<div className="text-red-300">Active Threat Detection: 24/7</div>
<div className="mt-2 text-sm">Predicting security incidents before they occur</div>
</div>
</div>
);
}