Add: GalleryGrid component
This commit is contained in:
parent
df3b4082ec
commit
d7c3118405
1 changed files with 31 additions and 0 deletions
31
frontend/src/components/GalleryGrid.tsx
Normal file
31
frontend/src/components/GalleryGrid.tsx
Normal 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>
|
||||
)
|
||||
}
|
||||
|
Loading…
Add table
Reference in a new issue