13 lines
420 B
TypeScript
13 lines
420 B
TypeScript
import { GalleryContent } from "@/components/gallery-content";
|
||
import { GALLERY_IMAGES } 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 images={GALLERY_IMAGES} />;
|
||
}
|