"use client"
import {
Spiral3DSlider,
type Spiral3DSlide,
} from "@/components/ui/spiral-3d-slider"
// Add your own files to public/images/gallery, or use remote image URLs.
const slides: Spiral3DSlide[] = [
{ src: "/images/gallery/photo-01.jpg", alt: "Describe the first image" },
{ src: "/images/gallery/photo-02.jpg", alt: "Describe the second image" },
{ src: "/images/gallery/photo-03.jpg", alt: "Describe the third image" },
{ src: "/images/gallery/photo-04.jpg", alt: "Describe the fourth image" },
{ src: "/images/gallery/photo-05.jpg", alt: "Describe the fifth image" },
{ src: "https://example.com/photo-06.jpg", alt: "Remote images work too" },
]
export default function Gallery() {
return (
<Spiral3DSlider
items={slides}
autoRotate
autoSpeed={0.13}
className="min-h-[720px]"
/>
)
}