feat: memberships page

This commit is contained in:
2026-06-04 17:19:46 +07:00
parent 0e1bf168ed
commit 1e043d53a3
222 changed files with 582 additions and 87 deletions
+12
View File
@@ -0,0 +1,12 @@
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 />;
}