Components
Loading preview...
An animated feature carousel with smooth slide transitions.
npx shadcn@latest add https://21st.dev/r/0xUrvish/feature-carousel"use client";
import FeatureCarousel from "@/components/ui/feature-carousel";
export default function Demo() {
return (
<div className="flex items-center justify-center w-full min-h-screen bg-background p-8">
<FeatureCarousel />
</div>
);
}