Add: GalleryGrid component

This commit is contained in:
Aroy-Art 2025-03-23 17:04:31 +01:00
parent df3b4082ec
commit d7c3118405
Signed by: Aroy
GPG key ID: 583642324A1D2070

View file

@ -0,0 +1,31 @@
import { PostCard } from "@/components/partials/PostCard"
interface Post {
post_id: string
title: string
description: string
creator: {
[key: string]: string
}
date: {
[key: string]: string
}
media: Array<{
[key: string]: string
}>
}
interface GalleryGridProps {
items: Post[]
}
export function GalleryGrid({ items }: GalleryGridProps) {
return (
<div className="flex flex-wrap flex-cols-6 justify-center gap-3 max-w-[120rem]">
{items.map((item) => (
<PostCard key={item.post_id} {...item} />
))}
</div>
)
}