Components
An animated text component that swaps phrases with a per-word hard-cut staircase transition for sharp, editorial word cycling.
Loading preview...
"use client";
import SharedAxisY from "@/components/ui/shared-axis-y";
const SharedAxisYDemo = () => (
<div className="flex min-h-[300px] flex-col items-center justify-center gap-4 text-center text-foreground">
<SharedAxisY
className="font-bold text-4xl tracking-tight"
phrases={[
"Layered navigation.",
"Hierarchy made clear.",
"Depth with restraint.",
]}
/>
</div>
);
export default SharedAxisYDemo;