Components
npx shadcn@latest add https://21st.dev/r/starc007/be-ui-text-animationLoading preview...
"use client";
import { TextShimmer } from "@/components/ui/be-ui-text-animation";
export default function TextShimmerPreview() {
return (
<div className="flex flex-col gap-4">
<TextShimmer className="text-3xl font-semibold">Loading projects…</TextShimmer>
<TextShimmer duration={1.5} className="text-sm">Faster shimmer</TextShimmer>
</div>
);
}