Components
Animated text where each letter drifts and orbits on spring physics before settling into place, with a hover replay.
Loading preview...
"use client"
import { OrbitalText } from "@/components/ui/orbital-letters"
export default function Default() {
return (
<div className="flex min-h-[320px] w-full items-center justify-center bg-white dark:bg-neutral-950">
<OrbitalText text="Orbital Letters" />
</div>
)
}