GodUIGodUI
109Follow on X

Reach the stars

Move your cursor to steer.

Warp Starfield

tsx
import { WarpStarfield } from "@/components/godui/warp-starfield";export function WarpStarfieldDemo() {return (  <div className="relative flex h-[360px] w-full items-center justify-center overflow-hidden rounded-xl border border-border bg-background">    <WarpStarfield />    <div className="relative z-raised text-center">      <h2 className="font-semibold text-3xl tracking-tight">Reach the stars</h2>      <p className="mt-2 text-muted-foreground">Move your cursor to steer.</p>    </div>  </div>);}