+
+
+ {lightboxIndex! > 0 && (
+
+ )}
+
+ {lightboxIndex! < items.length - 1 && (
+
+ )}
+
+
e.stopPropagation()}
+ >
+
+
+
+
+
+
+
+
+ {lightboxItem.title}
+
+
+ {lightboxItem.category}
+
+
+
+ {lightboxIndex! + 1} / {items.length}
+
+
+ {lightboxItem.description && (
+
+ {lightboxItem.description}
+
+ )}
+
+
+
+ )}
+ >
+ );
+}
diff --git a/data/gallery.ts b/data/gallery.ts
new file mode 100644
index 0000000..7e55244
--- /dev/null
+++ b/data/gallery.ts
@@ -0,0 +1,9 @@
+export type GalleryItem = {
+ id: string;
+ title: string;
+ description: string;
+ image: string;
+ category: string;
+};
+
+export const GALLERY_ITEMS: GalleryItem[] = [];
diff --git a/lib/links.ts b/lib/links.ts
index 0e84789..6aec57c 100644
--- a/lib/links.ts
+++ b/lib/links.ts
@@ -3,6 +3,7 @@ export const NAV_LINKS = [
{ id: "blog", label: "Blog", href: "/blog" },
{ id: "content", label: "İçerikler", href: "/content" },
{ id: "projects", label: "Projeler", href: "/projects" },
+ { id: "gallery", label: "Galeri", href: "/gallery" },
{ id: "contact", label: "İletişim", href: "/contact" },
] as const;