Animated text heading where the letter-spacing collapses from wide to normal while blur clears, with a springy easing.
import { TrackingIn } from "@/components/ui/tracking-in"; export default function TrackingInDemo() { return ( <div className="flex min-h-[420px] w-full items-center justify-center bg-background p-6"> <div className="relative aspect-video w-full max-w-2xl overflow-hidden rounded-xl border"> <TrackingIn text="Tracking In" fontSize={72} /> </div> </div> ); }