Components
Loading preview...
Vector Field with color props
npx shadcn@latest add https://21st.dev/r/designali-in/vector-fieldimport { VectorField } from "@/components/ui/vector-field";
export default function DemoOne() {
return (
<div className="flex items-center justify-center flex-col min-h-screen w-full">
<VectorField />
<h2 className="w-full absolute z-10 py-10 text-center text-5xl font-semibold lg:text-7xl text-white">
Vector Field
</h2>
</div>
);
}