Spaces:
Build error
Build error
File size: 664 Bytes
e8aa9a3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | import Link from 'next/link';
export default function Header() {
return (
<div className="fixed top-6 right-6 z-50 flex gap-4">
<div className="glass-card px-4 py-2 flex items-center justify-between text-sm clinical-text">
<span>NO_NB</span>
<span className="mx-2 opacity-30">|</span>
<span>EN_US</span>
</div>
<div className="glass-card px-4 py-2 flex items-center justify-between text-sm clinical-text">
<Link href="https://huggingface.co/spaces/akhaliq/anycoder" target="_blank" className="text-aurora-cyan hover:underline">
Built with anycoder
</Link>
</div>
</div>
);
} |