feat: add ThemeToggle component to header login section

This commit is contained in:
암냥 2026-04-21 22:36:05 +09:00
commit 68bb75b1c8
No known key found for this signature in database

View file

@ -195,7 +195,10 @@ export default function Header() {
) : null} ) : null}
</div> </div>
) : ( ) : (
<a href="/api/auth/discord/login" className="text-[16px] text-foreground/50">[ <span className="text-foreground">Login</span> ]</a> <div className="relative flex items-center gap-4" id="menu">
<ThemeToggle />
<a href="/api/auth/discord/login" className="text-[16px] text-foreground/50">[ <span className="text-foreground">Login</span> ]</a>
</div>
)} )}
</header> </header>
); );