Components
Loading preview...
import { CardCarousel } from "@/components/ui/card-carousel";
export default function DemoOne() {
const images = [
{
src: "https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=800&q=80",
alt: "Forest Path",
},
{
src: "https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=800&q=80",
alt: "Beach Sunset",
},
{
src: "https://images.unsplash.com/photo-1503264116251-35a269479413?auto=format&fit=crop&w=800&q=80",
alt: "Mountain Range",
},
{
src: "https://images.unsplash.com/photo-1519125323398-675f0ddb6308?auto=format&fit=crop&w=800&q=80",
alt: "City at Night",
},
{
src: "https://images.unsplash.com/photo-1470770841072-f978cf4d019e?auto=format&fit=crop&w=800&q=80",
alt: "Desert Dunes",
},
];
return <div className="pt-40">
<CardCarousel
images={images}
autoplayDelay={2000}
showPagination={true}
showNavigation={true}
/>
</div>;
}