import React from 'react'; import { useNavigate } from 'react-router-dom'; import { ArrowLeft, ArrowRight, AlertCircle, CheckCircle } from 'lucide-react'; const priorities = [ { level: 'Critical', color: 'bg-red-500', text: 'text-red-700', bg: 'bg-red-50 border-red-200', desc: 'System outages, data breaches, total blockers. Responded to immediately.', examples: ['Server completely down', 'Security breach detected', 'All users locked out'] }, { level: 'High', color: 'bg-orange-500', text: 'text-orange-700', bg: 'bg-orange-50 border-orange-200', desc: 'Major feature broken, deadline-sensitive. Responded to within 1 hour.', examples: ['Production deploy failing', 'VPN down for team', 'Payment system error'] }, { level: 'Medium', color: 'bg-yellow-500', text: 'text-yellow-700', bg: 'bg-yellow-50 border-yellow-200', desc: 'Partial functionality impacted. Responded to within 4 hours.', examples: ['Printer not working', 'Email delays', 'Slow performance'] }, { level: 'Low', color: 'bg-green-500', text: 'text-green-700', bg: 'bg-green-50 border-green-200', desc: 'Minor inconvenience, cosmetic issues. Responded to within 24 hours.', examples: ['Wrong timezone on dashboard', 'Typo in email', 'Dark mode request'] }, ]; const signals = [ { signal: '"ASAP"', priority: 'Critical', weight: '↑↑↑' }, { signal: '"urgent"', priority: 'High', weight: '↑↑' }, { signal: '"all users affected"', priority: 'Critical', weight: '↑↑↑' }, { signal: '"minor issue"', priority: 'Low', weight: '↓' }, { signal: '"when you can"', priority: 'Low', weight: '↓↓' }, { signal: '"class starts in 20 mins"', priority: 'High', weight: '↑↑' }, ]; export default function PriorityDetectionFeature() { const navigate = useNavigate(); return (
Our AI reads emotional context, keywords, and impact signals to automatically assign the right priority — before any human sees it.
{desc}
Phrases that influence priority scoring in real-time.
{signal}
Let AI handle the urgency so your team focuses on the fix.