feat(i18n): setup next-intl core config and translation dictionaries

This commit is contained in:
Poyraz
2026-06-27 14:42:40 +03:00
parent 6d2ecbc14f
commit 968ebb33c5
19 changed files with 275 additions and 91 deletions
+12
View File
@@ -0,0 +1,12 @@
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} />;
}