feat: implement gallery page with category filtering and lightbox functionality

This commit is contained in:
Poyraz Avsever
2026-04-10 10:50:54 +03:00
parent ee3bd56093
commit 83e192ebd6
6 changed files with 279 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
export type GalleryItem = {
id: string;
title: string;
description: string;
image: string;
category: string;
};
export const GALLERY_ITEMS: GalleryItem[] = [];