Built with precision
Move your cursor across the grid.
Blueprint Grid
tsx
import { BlueprintGrid } from "@/components/godui/blueprint-grid";export function BlueprintGridDemo() {return ( <div className="relative flex h-[360px] w-full items-center justify-center overflow-hidden rounded-xl border border-border bg-background"> <BlueprintGrid /> <div className="relative z-raised text-center"> <h2 className="font-semibold text-3xl tracking-tight">Built with precision</h2> <p className="mt-2 text-muted-foreground">Move your cursor across the grid.</p> </div> </div>);}