chore: bootstrap HemHub web (Iteration 0)

This commit is contained in:
Urban Modig
2025-10-09 14:14:17 +02:00
commit 64787b0b0b
25 changed files with 3221 additions and 0 deletions

View File

@ -0,0 +1,5 @@
// src/pages/DashboardPage.tsx
export function DashboardPage() {
return <h1 className="text-2xl font-semibold">Välkommen till HemHub</h1>
}

View File

@ -0,0 +1,2 @@
// src/pages/DueTomorrowPage.tsx
export function DueTomorrowPage() { return <div>Morgondagens tasks</div> }

View File

@ -0,0 +1,3 @@
// src/pages/HouseholdBoardPage.tsx
export function HouseholdBoardPage() { return <div>Household Kanban</div> }

View File

@ -0,0 +1,2 @@
// src/pages/ProjectBoardPage.tsx
export function ProjectBoardPage() { return <div>Project Kanban</div> }