Files
B.Tech-Project-III/thirdeye/dashboard/app/logs/SystemTickerLogs.tsx
2026-04-05 00:43:23 +05:30

21 lines
1.4 KiB
TypeScript

export default function SystemTickerLogs() {
return (
<footer className="h-8 border-t flex items-center overflow-hidden" style={{ backgroundColor: "#0C0C0E", borderColor: "rgba(167, 139, 250, 0.1)" }}>
<div className="flex items-center whitespace-nowrap animate-log-ticker gap-12 w-full pl-[100%]">
<div className="flex items-center gap-2 text-[10px] font-mono-data" style={{ color: "rgba(168, 140, 251, 0.7)" }}>
<span className="font-bold uppercase">[SYSTEM]</span> Kernel optimization complete. (v4.2.0-stable)
</div>
<div className="flex items-center gap-2 text-[10px] font-mono-data text-zinc-500">
<span className="font-bold uppercase" style={{ color: "rgba(0, 218, 243, 0.7)" }}>[NET]</span> Sub-layer latency dropped below 5ms for all local clusters.
</div>
<div className="flex items-center gap-2 text-[10px] font-mono-data text-zinc-500">
<span className="font-bold uppercase" style={{ color: "rgba(238, 125, 119, 0.7)" }}>[SEC]</span> Brute force attempt blocked from 45.1.22.88. Target: Archive_Vault.
</div>
<div className="flex items-center gap-2 text-[10px] font-mono-data" style={{ color: "rgba(168, 140, 251, 0.7)" }}>
<span className="font-bold uppercase">[AI]</span> Neural agent AX-982 is retraining on high-entropy log clusters.
</div>
</div>
</footer>
);
}