fix(frontend): add blur overlay on landing page for better text contrast

This commit is contained in:
2026-05-29 01:00:02 +02:00
parent 95ea633e78
commit 9c5d5518bb

View File

@@ -5,6 +5,8 @@ import { LandingFeatures } from "./landing-features";
export function LandingPage() { export function LandingPage() {
return ( return (
<div className="min-h-screen relative overflow-hidden font-sans"> <div className="min-h-screen relative overflow-hidden font-sans">
{/* Background blur overlay */}
<div className="fixed inset-0 bg-white/30 backdrop-blur-sm -z-[5]" />
{/* Ambient orbs */} {/* Ambient orbs */}
<div <div
className="landing-orb" className="landing-orb"