import { ImageTrail } from "@/components/ui/image-trail"
const myImages = [
"https://example.com/image1.jpg",
"https://example.com/image2.jpg",
"https://example.com/image3.jpg",
]
export function Hero() {
return (
<div className="relative w-full h-[600px] overflow-hidden bg-black">
<div className="absolute inset-0 z-10 flex items-center justify-center pointer-events-none">
<h1 className="text-4xl font-bold text-white">DISCOVERY</h1>
</div>
<ImageTrail
images={myImages}
imageWidth={250}
imageHeight={320}
threshold={50}
duration={1.6}
/>
</div>
)
}