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

View File

@@ -0,0 +1,11 @@
import { createFileRoute } from '@tanstack/react-router';
export const Route = createFileRoute('/_app/dashboard')({
component: Dashboard,
});
function Dashboard() {
return (
<h3>Welcome Home!</h3>
);
}