Skip to content

Commit bfc9a19

Browse files
Update header with proper AGI branding
- Add full AGI logo lockup (ANNOTATION GARDEN + INITIATIVE) - INITIATIVE text in stone gray color - Logo links to annotation.garden - Add project name badge (Image Annotation) - Show dataset info (NSD Shared 1000 Dataset)
1 parent b808c97 commit bfc9a19

File tree

1 file changed

+24
-9
lines changed

1 file changed

+24
-9
lines changed

frontend/app/page.tsx

Lines changed: 24 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -143,19 +143,34 @@ export default function Dashboard() {
143143
{/* Header */}
144144
<header className="bg-white/70 backdrop-blur-xl border-b border-agi-teal/10">
145145
<div className="px-3 md:px-6 py-3 md:py-4 flex flex-col md:flex-row items-center justify-between gap-2">
146-
<div className="flex items-center gap-2 md:gap-3">
146+
<a
147+
href="https://annotation.garden"
148+
target="_blank"
149+
rel="noopener noreferrer"
150+
className="flex items-center gap-3 md:gap-4 hover:opacity-90 transition-opacity"
151+
>
147152
<img
148153
src={`${process.env.NEXT_PUBLIC_BASE_PATH || ''}/AGI-square.svg`}
149154
alt="AGI Logo"
150-
className="w-8 h-8 md:w-10 md:h-10"
155+
className="w-10 h-10 md:w-12 md:h-12"
151156
/>
152-
<h1 className="text-lg md:text-2xl font-bold text-agi-teal">
153-
Annotation Garden
154-
</h1>
155-
</div>
156-
<div className="flex items-center gap-2 text-xs md:text-sm text-agi-teal-600">
157-
<Sparkles className="w-3 h-3 md:w-4 md:h-4 text-agi-orange" />
158-
<span>Collaborative Image Annotation</span>
157+
<div className="flex flex-col">
158+
<div className="flex flex-col leading-tight">
159+
<span className="text-base md:text-xl font-bold tracking-wide text-agi-teal">
160+
ANNOTATION GARDEN
161+
</span>
162+
<span className="text-xs md:text-sm font-semibold tracking-widest text-stone-500">
163+
INITIATIVE
164+
</span>
165+
</div>
166+
</div>
167+
</a>
168+
<div className="flex flex-col items-center md:items-end gap-1">
169+
<div className="flex items-center gap-2 px-3 py-1 bg-agi-teal/10 rounded-full">
170+
<Sparkles className="w-3 h-3 md:w-4 md:h-4 text-agi-orange" />
171+
<span className="text-xs md:text-sm font-medium text-agi-teal">Image Annotation</span>
172+
</div>
173+
<span className="text-xs text-agi-teal-500">NSD Shared 1000 Dataset</span>
159174
</div>
160175
</div>
161176
</header>

0 commit comments

Comments
 (0)