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
+12
View File
@@ -0,0 +1,12 @@
import { GalleryContent } from "@/components/gallery-content";
import { GALLERY_ITEMS } from "@/data/gallery";
import type { Metadata } from "next";
export const metadata: Metadata = {
title: "Galeri",
description: "Poyraz Avsever'in tasarımları, projeleri ve görsel içeriklerinden oluşan galeri portföyü.",
};
export default function GalleryPage() {
return <GalleryContent items={GALLERY_ITEMS} />;
}