2025-08-28 11:34:44 +08:00

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