forked from UKSOURCE/ipv6
13 lines
395 B
TypeScript
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 />;
|
|
}
|