A swipeable photo stack that sends the top image to the back, from the official Motion examples catalog.
"use client" import CardStack from "@/components/ui/motion-card-stack" export default function Default() { return ( <div className="motion-example flex w-full items-center justify-center p-6"> <CardStack /> </div> ) }