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>
11 lines
251 B
TypeScript
11 lines
251 B
TypeScript
import SiteShell from "@/components/SiteShell";
|
|
import CommunityNewClient from "@/components/CommunityNewClient";
|
|
|
|
export default function CommunityNewPage() {
|
|
return (
|
|
<SiteShell showFooter>
|
|
<CommunityNewClient />
|
|
</SiteShell>
|
|
);
|
|
}
|