2025-04-29 18:15:16 +08:00

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>
);
}