Components
A stack of article cards that fan out on hover, revealing multiple articles in a layered layout.
Loading preview...
import StackedArticleCards from "../components/ui/stacked-article-cards";
export default function Demo() {
return (
<div className="flex items-center justify-center min-h-screen bg-background p-8">
<StackedArticleCards />
</div>
);
}