fix: Restore logout button, hide DramOfTheDay on mobile

- Keep logout button in header (user feedback)
- Hide DramOfTheDay on mobile to save space (hidden sm:block)
- Keep responsive flex-wrap and reduced gaps
This commit is contained in:
2026-01-19 23:23:28 +01:00
parent d8a9e9fd0a
commit 883f76e488

View File

@@ -214,13 +214,14 @@ export default function Home() {
<div className="hidden sm:block">
<LanguageSwitcher />
</div>
<div className="hidden sm:block">
<DramOfTheDay bottles={bottles} />
</div>
<button
onClick={() => router.push('/settings')}
className="p-2 text-zinc-500 hover:text-white transition-colors"
aria-label="Settings"
onClick={handleLogout}
className="text-[9px] font-bold uppercase tracking-widest text-zinc-600 hover:text-white transition-colors whitespace-nowrap"
>
<Settings size={18} />
{t('home.logout')}
</button>
</div>
</div>