GodUIGodUI
109Follow on X

Interfaces that feel alive

Spring-driven motion, pointer-aware surfaces, and pixel-tuned details — the same craft a senior design engineer ships by hand, ready to drop in.

60fpsReduced-motion safeThemed tokensZero config

Realtime analytics

Every interaction streamed and charted as it happens.

1.2Mevents / day

Enterprise-grade

SOC 2 Type II, SSO, and audit logs out of the box.

120ms p95 globally

Served from 35 edge regions, close to every user.

Automate the busywork

Chain triggers, conditions, and actions into flows that run themselves — no glue code.

Explore automations

Bento Grid

tsx
import { BentoGrid, BentoCard } from "@/components/godui/bento-grid";import { Sparkles, Activity, ShieldCheck, Globe2 } from "lucide-react";const iconWrap = "inline-flex size-10 items-center justify-center rounded-lg bg-primary/10 text-primary";export function BentoGridDemo() {return (  <BentoGrid className="max-w-4xl">    <BentoCard      colSpan={2}      icon={<span className={iconWrap}><Sparkles className="size-5" /></span>}      title="Interfaces that feel alive"      description="Spring-driven motion and pixel-tuned details, ready to drop in."    />    <BentoCard      rowSpan={2}      icon={<span className={iconWrap}><Activity className="size-5" /></span>}      title="Realtime analytics"      description="Every interaction streamed and charted as it happens."    />    <BentoCard      icon={<span className={iconWrap}><ShieldCheck className="size-5" /></span>}      title="Enterprise-grade"      description="SOC 2 Type II, SSO, and audit logs out of the box."    />    <BentoCard      icon={<span className={iconWrap}><Globe2 className="size-5" /></span>}      title="120ms p95 globally"      description="Served from 35 edge regions, close to every user."    />  </BentoGrid>);}