A 3D image carousel.
1import ThreeDPhotoCarousel from "../ui/three-d-carousel"
2
3export function ThreeDPhotoCarouselDemo() {
4 return (
5 <div className="w-full max-w-4xl">
6 <div className="min-h-[500px] flex flex-col justify-center border border-dashed rounded-lg space-y-4">
7 <div className="p-2">
8 <ThreeDPhotoCarousel />
9 </div>
10 </div>
11 </div>
12 )
13}