Files
cupcontrol/frontend/src/routes/index.tsx
2025-12-25 15:59:17 +01:00

38 lines
963 B
TypeScript

import { createFileRoute } from "@tanstack/react-router";
import logo from "../logo.svg";
export const Route = createFileRoute("/")({
component: App,
});
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>
);
}