chore: basic layout

This commit is contained in:
2025-08-04 10:58:38 +08:00
parent cb542ffb9c
commit ff657f29d4
12 changed files with 336 additions and 23 deletions

13
src/routes/login.tsx Normal file
View File

@@ -0,0 +1,13 @@
import { createFileRoute } from '@tanstack/react-router';
export const Route = createFileRoute('/login')({
component: LoginPage,
});
function LoginPage() {
return (
<div style={{ padding: '50px', textAlign: 'center' }}>
<h1></h1>
</div>
);
}