Components
Text component whose letters are filled with animated moving color orbs for a 3D gradient effect on any background.
Loading preview...
import { GradientText } from "@/components/ui/gradient-text-fill"
export default function Default() {
return (
<div className="flex min-h-[320px] w-full items-center justify-center p-8">
<GradientText
as="h1"
className="text-6xl font-bold tracking-tight md:text-8xl"
>
Groot Studio
</GradientText>
</div>
)
}