Initial commit

This commit is contained in:
JetSprow
2026-04-29 05:12:39 +10:00
commit 27dbca9cbf
379 changed files with 43486 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import type { Metadata } from "next";
import { getAppConfig } from "@/services/app-config";
import { RegisterPageClient } from "./register-page-client";
export const metadata: Metadata = {
title: "注册",
description: "创建 J-Board 新账户并开始订阅服务。",
};
export default async function RegisterPage() {
const config = await getAppConfig();
return <RegisterPageClient siteKey={config.turnstileSiteKey} />;
}