14 lines
507 B
TypeScript
14 lines
507 B
TypeScript
export default function Home() {
|
|
return (
|
|
<div className="min-h-screen grid place-items-center p-10">
|
|
<div className="text-center space-y-4">
|
|
<h1 className="text-4xl font-semibold">日志分析仪表盘</h1>
|
|
<p className="text-gray-500">浏览服务器上的站点列表并查看访问分析</p>
|
|
<a href="/sites" className="inline-block px-5 py-2 rounded bg-blue-600 text-white hover:bg-blue-500">
|
|
进入 Site 列表
|
|
</a>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|