An animated notification stack that cycles through items automatically.
Vercel has shipped a new feature
pnpm dlx shadcn@latest add https://orbit.ruturaj.xyz/r/rotating-stack.jsonimport RotatingStack from "@/components/rotating-stack"
export default function Page() {
return (
<RotatingStack
notifications={[
{ id: 1, message: "Vercel has shipped a new feature", cta: "Explore" },
{ id: 2, message: "Your deployment is ready to preview", cta: "View deploy" },
{ id: 3, message: "Domain verification successful", cta: "Go to settings" },
]}
/>
)
}With Icons
Notifications with image and React node icons.
Vercel has shipped a new feature