mirror of
https://github.com/JetSprow/J-Board-Lite.git
synced 2026-05-01 01:14:10 +05:30
14 lines
435 B
TypeScript
14 lines
435 B
TypeScript
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} />;
|
|
}
|