feat: add bottom navigation bar (mobile-first)

Fixed bottom nav with Home/Spiele/Rangliste/Profil tabs.
Desktop keeps header nav. Admin hidden behind gear icon.
Main content padded to avoid overlap with bottom nav.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Ronny
2026-04-11 18:59:00 +02:00
parent 4f148811f0
commit cb095126ef
5 changed files with 117 additions and 4 deletions
+6
View File
@@ -4,8 +4,14 @@ interface Window {
interface ImportMetaEnv {
readonly VITE_TEST_MODE?: string;
readonly DEV: boolean;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}
declare module '*.module.css' {
const classes: { readonly [key: string]: string };
export default classes;
}