Chart the unknown
Terrain that never stops shifting.
Topographic Drift
tsx
import { TopographicDrift } from "@/components/godui/topographic-drift";export function TopographicDriftDemo() {return ( <div className="relative flex h-[360px] w-full items-center justify-center overflow-hidden rounded-xl border border-border bg-background"> <TopographicDrift /> <div className="relative z-raised text-center"> <h2 className="font-semibold text-3xl tracking-tight">Chart the unknown</h2> <p className="mt-2 text-muted-foreground">Terrain that never stops shifting.</p> </div> </div>);}