Components
Loading preview...
A React component that renders a full-screen interactive particle animation forming the word "21ST.DEV". Particles are attracted to text-shaped targets and respond to mouse or touch movements, creating a dynamic typography effect.
npx shadcn@latest add https://21st.dev/r/minhxthanh/interactive-particle-typography-1import ParticleTypography from "@/components/ui/interactive-particle-typography-1";
const DemoOne = () => {
return (
<div className="flex w-full h-screen justify-center items-center">
<ParticleTypography />
</div>
);
};
export { DemoOne };