import { Carousel004, type Carousel004Item } from "@/components/ui/carousel-004"const images: Carousel004Item[] = [
{ id: "poppy", src: "/flowers/poppy.jpg", alt: "Pink poppy" },
{ id: "orchid", src: "/flowers/orchid.jpg", alt: "Pink orchid" },
{ id: "leaf", src: "/flowers/leaf.jpg", alt: "Tropical leaf" },
]
export function Gallery() {
return <Carousel004 items={images} loop className="mx-auto max-w-5xl" />
}