feat: implement gallery page with category filtering and lightbox functionality
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
export type GalleryItem = {
|
||||
id: string;
|
||||
title: string;
|
||||
description: string;
|
||||
image: string;
|
||||
category: string;
|
||||
};
|
||||
|
||||
export const GALLERY_ITEMS: GalleryItem[] = [];
|
||||
Reference in New Issue
Block a user