包含 Turborepo 配置、Next.js 前端骨架、NestJS 后端骨架、Prisma Schema、 共享类型包、Docker Compose 和环境变量模板。 Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
8 lines
205 B
TypeScript
8 lines
205 B
TypeScript
export default function HomePage() {
|
|
return (
|
|
<main className="flex min-h-screen items-center justify-center">
|
|
<h1 className="text-3xl font-bold">FTB 项目管理系统</h1>
|
|
</main>
|
|
);
|
|
}
|