feat: implement gallery page with lightbox functionality and image data management

This commit is contained in:
Poyraz Avsever
2026-04-13 12:14:37 +03:00
parent c147dc4eb4
commit 7982d0fb6b
15 changed files with 96 additions and 138 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
import { GalleryContent } from "@/components/gallery-content";
import { GALLERY_ITEMS } from "@/data/gallery";
import { GALLERY_IMAGES } from "@/data/gallery";
import type { Metadata } from "next";
export const metadata: Metadata = {
@@ -8,5 +8,5 @@ export const metadata: Metadata = {
};
export default function GalleryPage() {
return <GalleryContent items={GALLERY_ITEMS} />;
return <GalleryContent images={GALLERY_IMAGES} />;
}