feat: enhance header component with complete navigation structure

- Add responsive header with mobile hamburger menu
- Implement user authentication state handling
- Style with primary color scheme using neutral/primary variants
- Add proper navigation links for events and concerts sections
- Include user dropdown menu with profile and logout options

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
kbe
2025-08-28 15:31:19 +02:00
parent f6675bd5e4
commit 74f8350abe
3 changed files with 147 additions and 5 deletions

View File

@@ -3,7 +3,17 @@
/* Import Tailwind using PostCSS */
@import "tailwindcss";
/* Import our custom theme */
@import "theme";
/* Import components */
@import "components/hero";
@import "components/flash";
@import "components/footer";
@import "components/event-finder";
/* Import pages */
@import "pages/home";
/* Base styles */
body {

View File

@@ -100,11 +100,6 @@
}
/* Base styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: var(--font-sans);