Components
Loading preview...
Here is space box animated component
npx shadcn@latest add https://21st.dev/r/voxlet-ui/space-boximport SpaceBox from "@/components/ui/space-box";
export default function SpaceBoxDemo() {
return (
<main className="flex items-center justify-center p-4">
<SpaceBox
highlightedWord="Hover"
text="to see magic"
animatedText="Animated Scrolling Text"
starDensity="high"
/>
</main>
)
}