This commit is contained in:
2026-04-05 00:43:23 +05:30
commit 8be37d3e92
425 changed files with 101853 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
const stats = [
{ label: "Inference Latency", value: "14 MS" },
{ label: "Neural Encryption", value: "THIRDEYE-X9" },
{ label: "Active Connectors", value: "14 / 16" },
];
export default function IntelFooter() {
return (
<footer
className="mt-20 pt-8 flex flex-wrap justify-between items-center gap-8"
style={{ borderTop: "1px solid rgba(167,139,250,0.1)" }}
>
<div className="flex items-center space-x-12">
{stats.map((s) => (
<div key={s.label}>
<div className="text-[10px] font-mono-data uppercase tracking-widest mb-1" style={{ color: "rgba(249,245,248,0.4)" }}>
{s.label}
</div>
<div className="text-lg font-bold text-white font-mono-data">{s.value}</div>
</div>
))}
</div>
<div className="text-[10px] font-mono-data tracking-tighter" style={{ color: "rgba(167,139,250,0.6)" }}>
© 2024 THIRDEYE_INTELLIGENCE // PRIVACY_FIRST_MONITORING
</div>
</footer>
);
}