Morph Gallery
tsx
import { MorphGallery } from "@/components/godui/morph-gallery";export function Gallery() {return ( <MorphGallery columns={3} items={[ { src: "/1.jpg", alt: "Coastline at dawn" }, { src: "/2.jpg", alt: "Alpine switchbacks" }, { src: "/3.jpg", alt: "Fog over the valley" }, ]} />);}