fix: resolve three critical UI issues
All checks were successful
build-website / build (push) Successful in 1m45s

- Fix hero video not displaying in notch safe area by changing z-index from -1 to 1
- Fix lucide icons not showing by installing and configuring nuxt-icon module
- Fix navigation bar bobbing by removing hysteresis thresholds and simplifying scroll handler

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-09-21 17:15:29 +02:00
parent 2bc0eb6735
commit d844579504
6 changed files with 204 additions and 17 deletions

View File

@@ -179,7 +179,7 @@ onMounted(() => {
left: 0;
width: 100vw;
height: 100vh;
z-index: -1;
z-index: 1;
pointer-events: none;
background: #ffffff; /* White fallback */
}