Update src/pages/HomePage/sections/Hero.tsx

This commit is contained in:
2026-06-14 22:45:35 +00:00
parent 1ca74130c5
commit 57afa4f855

View File

@@ -19,7 +19,7 @@ const items = [
imageSrc: "https://storage.googleapis.com/webild/users/user_3DzLJM9oAKQRjgJNceDCWiKwcdg/uploaded-1781476789123-z3qgihsa.png"
},
{
imageSrc: "https://images.unsplash.com/photo-1565299624946-b28f40a0ae38?auto=format&fit=crop&w=800&q=80"
imageSrc: "https://images.unsplash.com/photo-1565299624946-b28f40a0ae38?auto=format&fit=crop&w=800&q=80&_wi=1"
}
];
@@ -83,17 +83,8 @@ const HeroInline = () => {
export default function HeroSection() {
return (
<div
data-webild-section="hero"
id="hero"
className="relative bg-cover bg-center bg-no-repeat"
style={{ backgroundImage: "url('https://storage.googleapis.com/webild/users/user_3DzLJM9oAKQRjgJNceDCWiKwcdg/uploaded-1781477085527-ffpm6ovd.png')" }}
>
<style dangerouslySetInnerHTML={{ __html: `#hero section { background: transparent !important; }` }} />
<div className="absolute inset-0 bg-black/60 z-0 pointer-events-none" />
<div className="relative z-10">
<HeroInline />
</div>
<div data-webild-section="hero" id="hero">
<HeroInline />
</div>
);
}