GodUIGodUI
109Follow on X

A collection of animated React components built with Tailwind CSS and Framer Motion.

Accordion

tsx
import { Accordion } from "@/components/godui/accordion";const items = [{ value: "what", title: "What is GodUI?", content: "An animated component library." },{ value: "install", title: "How do I install?", content: "Use the shadcn CLI." },];export function AccordionDemo() {return <Accordion items={items} defaultValue="what" />;}