This commit is contained in:
2026-05-28 19:37:12 +07:00
parent d47ee57377
commit e152bfcde1
9 changed files with 562 additions and 1 deletions
+12
View File
@@ -0,0 +1,12 @@
import type { Metadata } from "next";
import GalleryPageClient from "@/app/components/gallery/GalleryPageClient";
export const metadata: Metadata = {
title: "Event Gallery | IPv6 Enhanced 2026",
description:
"Experience the journey of IPv6 adoption through our event highlights and join the Council today.",
};
export default function GalleryPage() {
return <GalleryPageClient />;
}