Components
Loading preview...
An animated UI component showing stacked activity cards that expand and collapse with a smooth animation. Features elegant scaling and positioning transitions when toggled, with each card displaying an activity, location, and date.
npx shadcn@latest add https://21st.dev/r/spydiecy/stacked-activity-cardsimport { Component } from "@/components/ui/stacked-activity-cards";
const DemoOne = () => {
return (
<div className="flex w-full h-screen justify-center items-center">
<Component />
</div>
);
};
export { DemoOne };