Fix hero section on mobile - use background image instead of broken video
Some checks failed
Build and Deploy / build (push) Has been cancelled

This commit is contained in:
Unchained
2026-03-22 21:19:47 +02:00
parent 8a418be7c3
commit e9b95c44b9

View File

@@ -13,26 +13,8 @@ export default function HeroVideo() {
}; };
return ( return (
<section className="relative h-screen w-full overflow-hidden"> <section className="relative min-h-screen w-full overflow-hidden">
{/* Video Background */} {/* Background Image with Overlay */}
<div className="absolute inset-0">
<video
autoPlay
muted
loop
playsInline
poster="/images/hero-poster.jpg"
className="w-full h-full object-cover"
>
{/* Placeholder - Add actual video files when available */}
{/* <source src="/videos/hero.webm" type="video/webm" /> */}
{/* <source src="/videos/hero.mp4" type="video/mp4" /> */}
</video>
{/* Gradient Overlay */}
<div className="absolute inset-0 bg-gradient-to-b from-black/40 via-black/30 to-black/60" />
</div>
{/* Fallback Background (shown when video isn't loaded) */}
<div <div
className="absolute inset-0 bg-cover bg-center bg-no-repeat" className="absolute inset-0 bg-cover bg-center bg-no-repeat"
style={{ style={{
@@ -43,7 +25,7 @@ export default function HeroVideo() {
</div> </div>
{/* Content */} {/* Content */}
<div className="relative z-10 h-full flex flex-col items-center justify-center text-center text-white px-4"> <div className="relative z-10 min-h-screen flex flex-col items-center justify-center text-center text-white px-4 py-20">
<motion.div <motion.div
initial={{ opacity: 0, y: 30 }} initial={{ opacity: 0, y: 30 }}
animate={{ opacity: 1, y: 0 }} animate={{ opacity: 1, y: 0 }}