mirror of
https://github.com/arkorty/B.Tech-Project-III.git
synced 2026-04-19 20:51:49 +00:00
29 lines
1016 B
TypeScript
29 lines
1016 B
TypeScript
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>
|
|
);
|
|
}
|