feat: add server details

This commit is contained in:
2025-12-26 01:07:13 +01:00
parent 85a02076f6
commit 7294b50edf
8 changed files with 937 additions and 34 deletions

View File

@@ -6,32 +6,5 @@ export const Route = createFileRoute("/")({
});
function App() {
return (
<div className="text-center">
<header className="min-h-full flex flex-col items-center justify-center text-white text-[calc(10px+2vmin)]">
<img
src={logo}
className="h-[40vmin] pointer-events-none animate-[spin_20s_linear_infinite]"
alt="logo"
/>
<p>Hehe</p>
<a
className="text-[#61dafb] hover:underline"
href="https://reactjs.org"
target="_blank"
rel="noopener noreferrer"
>
Learn React
</a>
<a
className="text-[#61dafb] hover:underline"
href="https://tanstack.com"
target="_blank"
rel="noopener noreferrer"
>
Learn TanStack
</a>
</header>
</div>
);
return <div className="text-center">Dashboard coming soon!</div>;
}