14 lines
416 B
TypeScript
14 lines
416 B
TypeScript
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
|