GodUIGodUI
109Follow on X

Liquid Glass

Move your cursor across the panel.

Liquid Glass Card

tsx
import { LiquidGlassCard } from "@/components/godui/liquid-glass-card";export function LiquidGlassCardDemo() {return (  <div className="relative flex min-h-[360px] items-center justify-center overflow-hidden rounded-xl bg-cover bg-center" style={{ backgroundImage: "url(/glass-bg.webp)" }}>    <LiquidGlassCard className="w-72 p-8">      <h3 className="text-xl font-semibold text-white drop-shadow">Liquid Glass</h3>      <p className="mt-2 text-sm text-white/80">Move your cursor across the panel.</p>    </LiquidGlassCard>  </div>);}