Generative by default
Currents you never see twice.
Flow Field
tsx
import { FlowField } from "@/components/godui/flow-field";export function FlowFieldDemo() {return ( <div className="relative flex h-[360px] w-full items-center justify-center overflow-hidden rounded-xl border border-border"> <FlowField /> <div className="relative z-raised text-center"> <h2 className="font-semibold text-3xl tracking-tight">Generative by default</h2> <p className="mt-2 text-muted-foreground">Currents you never see twice.</p> </div> </div>);}