const signals = [ { icon: "warning", time: "T-2m ago", message: "Unusual spike in security mentions in DevOps channels. Analyzing 12 recent signals...", tag: "Security Risk", borderOpacity: "border-l-[3px]", borderColor: "rgba(167,139,250,0.3)", }, { icon: "check_circle", time: "T-14m ago", message: "High consensus reached on Microservices architecture for project 'Aurora'. 95% alignment.", tag: "Consensus Met", borderOpacity: "border-l-[3px]", borderColor: "#A78BFA", }, { icon: "campaign", time: "T-1h ago", message: "New 'ThirdEye Sovereign' feature mentioned across all leadership streams. Tracking adoption...", tag: "Brand Sync", borderOpacity: "border-l-[3px]", borderColor: "rgba(167,139,250,0.5)", }, { icon: "psychology_alt", time: "T-2h ago", message: "Ongoing trend: Focus shift to AI-assisted development across 5 engineering squads.", tag: "Trend Vector", borderOpacity: "border-l-[3px]", borderColor: "rgba(167,139,250,0.7)", }, ]; export default function LiveSignals() { return (

Live Signals Stream

{signals.map((s, idx) => (
{s.icon}
{s.time}

{s.message}

{s.tag} arrow_forward
))}
); }