GodUIGodUI
109Follow on X

Image Accordion

tsx
import { ImageAccordion } from "@/components/godui/image-accordion";const panels = [{ image: "/photos/mountains.jpg", title: "Mountains", description: "Alpine ridges at first light." },{ image: "/photos/rivers.jpg", title: "Rivers", description: "Glacial water carving the valley." },{ image: "/photos/waterfalls.jpg", title: "Waterfalls", description: "A 60-metre drop into the basin." },{ image: "/photos/forests.jpg", title: "Forests", description: "Old growth as far as you can see." },];export function Gallery() {return <ImageAccordion panels={panels} height="24rem" />;}