mirror of
https://github.com/JetSprow/J-Board-Lite.git
synced 2026-05-01 09:14:11 +05:30
Initial commit
This commit is contained in:
13
src/app/(auth)/register/page.tsx
Normal file
13
src/app/(auth)/register/page.tsx
Normal 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} />;
|
||||
}
|
||||
Reference in New Issue
Block a user