feat: implement gallery page with lightbox functionality and image data management
This commit is contained in:
+15
-9
@@ -1,9 +1,15 @@
|
||||
export type GalleryItem = {
|
||||
id: string;
|
||||
title: string;
|
||||
description: string;
|
||||
image: string;
|
||||
category: string;
|
||||
};
|
||||
|
||||
export const GALLERY_ITEMS: GalleryItem[] = [];
|
||||
// Galeri resimleri – public/gallery/ klasörüne eklenen dosyaların yolları
|
||||
export const GALLERY_IMAGES: string[] = [
|
||||
"/gallery/1.jpg",
|
||||
"/gallery/2.jpg",
|
||||
"/gallery/3.jpg",
|
||||
"/gallery/4.jpg",
|
||||
"/gallery/5.jpg",
|
||||
"/gallery/6.jpg",
|
||||
"/gallery/7.jpeg",
|
||||
"/gallery/8.jpeg",
|
||||
"/gallery/9.jpeg",
|
||||
"/gallery/10.jpeg",
|
||||
"/gallery/11.jpeg",
|
||||
"/gallery/12.jpeg",
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user