forked from UKSOURCE/ipv6
13 lines
405 B
TypeScript
13 lines
405 B
TypeScript
import type { Metadata } from "next";
|
|
import MembersPageClient from "@/app/components/members/MembersPageClient";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Our Members | IPv6 Enhanced 2026",
|
|
description:
|
|
"The collective force of leading global institutions driving IPv6 adoption across ASEAN's digital ecosystems.",
|
|
};
|
|
|
|
export default function MembersPage() {
|
|
return <MembersPageClient />;
|
|
}
|