Components
An animated orbital carousel that arcs cards along a curved track with smooth active-card transitions, autoplay, dot indicators, and keyboard navigation.

"use client";
import { CircularCarousel } from "@/components/ui/circular-carousel";
const items = [
{
id: "1",
title: "Nebula Engine",
description: "Real-time rendering pipeline built for immersive 3D worlds.",
tag: "Graphics",
},
{
id: "2",
title: "Quantum Sync",
description: "Instant state replication across every connected device.",
tag: "Realtime",
},
{
id: "3",
title: "Aurora Analytics",
description: "Insightful dashboards that surface trends as they happen.",
tag: "Data",
},
{
id: "4",
title: "Pulse Notifications",
description: "Timely, contextual alerts that keep users in the loop.",
tag: "Messaging",
},
{
id: "5",
title: "Vault Security",
description: "End-to-end encryption with zero-trust access controls.",
tag: "Security",
},
{
id: "6",
title: "Forge CI",
description: "Blazing-fast build and deploy pipelines out of the box.",
tag: "DevOps",
},
];
export default function CircularCarouselDemo() {
return (
<div className="flex min-h-[480px] w-full items-center justify-center bg-zinc-950 p-8">
<CircularCarousel items={items} />
</div>
);
}