Refactor: Replace emoji with favicon

This commit is contained in:
gpt-engineer-app[bot]
2025-11-02 02:54:08 +00:00
parent f7053997d2
commit 5a8c899ae6

View File

@@ -74,9 +74,11 @@ export function AdminSidebar() {
<SidebarHeader className="border-b border-border/40 px-4 py-4">
{!collapsed && (
<div className="flex items-center gap-2">
<div className="w-8 h-8 rounded-lg bg-primary/10 flex items-center justify-center">
<span className="text-lg">🎢</span>
</div>
<img
src="https://cdn.thrillwiki.com/images/5d06b122-a3a3-47bc-6176-f93ad8f0ce00/favicon32"
alt="ThrillWiki"
className="w-8 h-8"
/>
<div className="flex flex-col">
<span className="text-sm font-semibold">ThrillWiki</span>
<span className="text-xs text-muted-foreground">Admin Panel</span>
@@ -85,7 +87,11 @@ export function AdminSidebar() {
)}
{collapsed && (
<div className="flex items-center justify-center">
<span className="text-lg">🎢</span>
<img
src="https://cdn.thrillwiki.com/images/5d06b122-a3a3-47bc-6176-f93ad8f0ce00/favicon32"
alt="ThrillWiki"
className="w-6 h-6"
/>
</div>
)}
</SidebarHeader>