GodUIGodUI
109Follow on X

Step into the light

God-rays that gently breathe.

Light Rays

tsx
import { LightRays } from "@/components/godui/light-rays";export function LightRaysDemo() {return (  <div className="relative flex h-[360px] w-full items-center justify-center overflow-hidden rounded-xl border border-border bg-background">    <LightRays />    <div className="relative z-raised text-center">      <h2 className="font-semibold text-3xl tracking-tight">Step into the light</h2>      <p className="mt-2 text-muted-foreground">God-rays that gently breathe.</p>    </div>  </div>);}