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"> <div className="hidden sm:block">
<LanguageSwitcher /> <LanguageSwitcher />
</div> </div>
<DramOfTheDay bottles={bottles} /> <div className="hidden sm:block">
<DramOfTheDay bottles={bottles} />
</div>
<button <button
onClick={() => router.push('/settings')} onClick={handleLogout}
className="p-2 text-zinc-500 hover:text-white transition-colors" className="text-[9px] font-bold uppercase tracking-widest text-zinc-600 hover:text-white transition-colors whitespace-nowrap"
aria-label="Settings"
> >
<Settings size={18} /> {t('home.logout')}
</button> </button>
</div> </div>
</div> </div>