nomadweb/frontend/src/app/community/new/page.tsx
eric ff7b721acb feat: NomadCNA community layer, social matching, payments, and ebook
Port meetups, discussions, gigs, dating/chat, VIP pay (ZPay/XorPay), MiroTalk live, digital academy, and ebook reader. Add persistent community_store, git-first deploy docs, and env template for production secrets.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-30 09:38:13 -05:00

11 lines
251 B
TypeScript

import SiteShell from "@/components/SiteShell";
import CommunityNewClient from "@/components/CommunityNewClient";
export default function CommunityNewPage() {
return (
<SiteShell showFooter>
<CommunityNewClient />
</SiteShell>
);
}