13 lines
452 B
TypeScript
13 lines
452 B
TypeScript
// File: frontend/app/page.tsx
|
|
// Description: 应用主页 (根路径 '/')
|
|
|
|
export default function HomePage() {
|
|
return (
|
|
<div className="flex flex-col items-center justify-center h-full">
|
|
<h1 className="text-4xl font-bold mb-4 text-gray-800 dark:text-gray-200">欢迎来到 CherryAI 🍒</h1>
|
|
<p className="text-lg text-gray-600 dark:text-gray-400">
|
|
请从左侧导航选择功能开始使用。
|
|
</p>
|
|
</div>
|
|
);
|
|
} |