M-Zeki's picture
Upload components/Header.js with huggingface_hub
e8aa9a3 verified
Raw
History Blame Contribute Delete
664 Bytes
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>
);
}