Files
2026-05-28 19:37:12 +07:00

13 lines
395 B
TypeScript

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 />;
}