Initialize repo

This commit is contained in:
Kazimierz Ciołek
2026-02-02 13:56:14 +01:00
commit 7ecefb5621
127 changed files with 219019 additions and 0 deletions

13
src/app/routes/home.tsx Normal file
View File

@@ -0,0 +1,13 @@
export function HomePage() {
return (
<div className="flex flex-col gap-4 p-8">
<h1 className="text-3xl font-bold tracking-tight">Dashboard</h1>
<p className="text-muted-foreground">
Welcome to NordicFlow. Select a learning mode to get started.
</p>
</div>
)
}
// Necessary for react router to lazy load.
export const Component = HomePage