- Create 12 Office Space themed SVG badges (extraction, basement, printer, coffee, tps, bobs, memo, oface, stapler, conclusions, spreadsheet, flair-badge) - Implement FlairBadge.astro component with localStorage persistence - Add 15-second timer per page to earn flair - Create floating counter, modal flair board, toast notifications - Override Starlight Footer to inject flair system globally - Add name capture dialog on first flair earned Features: - Badges glow golden when earned, grayscale when locked - Progress persists across browser sessions - Stan quote: "We need to talk about your document processing..."
13 lines
711 B
XML
13 lines
711 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" fill="none">
|
|
<!-- "Basement Dweller" - Basement window with stapler silhouette -->
|
|
<rect x="8" y="8" width="32" height="32" rx="2" fill="#1e293b"/>
|
|
<!-- Basement window bars -->
|
|
<rect x="12" y="12" width="24" height="18" rx="1" fill="#334155"/>
|
|
<rect x="12" y="12" width="24" height="18" rx="1" stroke="#64748b" stroke-width="1"/>
|
|
<rect x="23" y="12" width="2" height="18" fill="#64748b"/>
|
|
<rect x="12" y="20" width="24" height="2" fill="#64748b"/>
|
|
<!-- Red stapler silhouette in darkness -->
|
|
<rect x="16" y="34" width="16" height="6" rx="1" fill="#dc2626"/>
|
|
<rect x="14" y="36" width="4" height="4" rx="1" fill="#b91c1c"/>
|
|
</svg>
|