feat(ui): make header sticky with glassy backdrop blur

Add sticky positioning and glassmorphism effect to the top navigation:
- sticky top-0 z-50 for fixed positioning above content
- bg-card/80 for 80% opacity background
- backdrop-blur-md for frosted glass effect

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Auto
2026-01-29 08:24:39 +02:00
parent 3b905cf3d7
commit 51d7d79695

View File

@@ -242,7 +242,7 @@ function App() {
return (
<div className="min-h-screen bg-background">
{/* Header */}
<header className="bg-card text-foreground border-b-2 border-border">
<header className="sticky top-0 z-50 bg-card/80 backdrop-blur-md text-foreground border-b-2 border-border">
<div className="max-w-7xl mx-auto px-4 py-4">
<div className="flex items-center justify-between">
{/* Logo and Title */}