Spaces:
Sleeping
Sleeping
File size: 1,262 Bytes
b89c27d 901a0ed b89c27d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | export function TopBar() {
return (
<header className="flex items-center justify-between border-b border-border pb-4">
<div className="flex items-center gap-3">
<div className="relative w-8 h-8 rounded-[8px] shadow-card"
style={{ background: 'linear-gradient(135deg, #e28763 0%, #c96442 100%)' }}>
<div className="absolute inset-[5px] border-[1.5px] rounded-[4px] border-white/60"
style={{ clipPath: 'polygon(0 0, 100% 0, 100% 70%, 30% 100%, 0 100%)' }} />
</div>
<div>
<div className="font-semibold text-base leading-tight">LandscapeForge</div>
<div className="text-[0.7rem] uppercase tracking-wider text-subtle mt-[1px]">
OpenEnv · Hackathon Apr '26
</div>
</div>
</div>
<nav className="flex items-center gap-1">
<a
href="https://huggingface.co/spaces/mnawfal29/landscapeforge"
target="_blank"
rel="noreferrer"
className="text-sm text-muted hover:text-ink px-3 py-1.5 rounded-md
hover:bg-surface border border-transparent
hover:border-border transition-colors"
>
Space
</a>
</nav>
</header>
)
}
|