import GalleryPreview from 'components/GalleryPreview' import type { Gallery } from 'lib/sanity.queries' export default function MoreGalleries({ posts }: { posts: Gallery[] }) { return (

More Galleries

{posts.map((post) => ( ))}
) }