diff --git a/CLAUDE.md b/CLAUDE.md index 1605c80..7a177c7 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -16,12 +16,12 @@ Lees het relevante document voordat je aan een feature begint. Nooit gokken over | Document | Gebruik voor | |---|---| -| `scrum4me-functional-spec.md` | Acceptatiecriteria, randgevallen, user flows | -| `scrum4me-architecture.md` | Stack, datamodel, Prisma schema, Zustand stores | -| `scrum4me-backlog.md` | Welke task bouwen, volgorde, "done when"-criteria | -| `scrum4me-personas.md` | Lars (primair), Dina, Remi — gebruik bij UI-beslissingen | -| `scrum4me-product-backlog.md` | Testdata voor de seed | -| `scrum4me-styling.md` | **Lees dit voor elk component** — MD3-kleuren, shadcn patronen | +| `docs/scrum4me-functional-spec.md` | Acceptatiecriteria, randgevallen, user flows | +| `docs/scrum4me-architecture.md` | Stack, datamodel, Prisma schema, Zustand stores | +| `docs/scrum4me-backlog.md` | Welke task bouwen, volgorde, "done when"-criteria | +| `docs/scrum4me-personas.md` | Lars (primair), Dina, Remi — gebruik bij UI-beslissingen | +| `docs/scrum4me-product-backlog.md` | Testdata voor de seed | +| `docs/scrum4me-styling.md` | **Lees dit voor elk component** — MD3-kleuren, shadcn patronen | --- @@ -38,7 +38,7 @@ M0 (ST-001–008) → M1 (ST-101–110) → M2 (ST-201–210) Per task: 1. Lees de task in `scrum4me-backlog.md` 2. Zoek de bijbehorende feature-spec in `scrum4me-functional-spec.md` -3. Lees het relevante patroon in `docs/patterns/` als dat van toepassing is +3. Lees het relevante patroon in `docs/patterns/` en styling in `docs/scrum4me-styling.md` als dat van toepassing is 4. Bouw — test — verifieer de "Done when"-criteria 5. vraag of code juiste is 6. Commit: `feat: ST-001 project scaffolding` @@ -52,7 +52,7 @@ Per task: Next.js 16 (App Router) + React 19 TypeScript strict Tailwind CSS + shadcn/ui -MD3 kleurensysteem via theme.css +MD3 kleurensysteem via app/styles/theme.css Zustand (client state) dnd-kit (drag-and-drop) Prisma v7 + PostgreSQL (Neon) | SQLite (lokaal) diff --git a/app/apple-icon.png b/app/apple-icon.png index 628e713..af8b1e1 100644 Binary files a/app/apple-icon.png and b/app/apple-icon.png differ diff --git a/app/favicon.ico b/app/favicon.ico index ab88226..cb7ea61 100644 Binary files a/app/favicon.ico and b/app/favicon.ico differ diff --git a/app/globals.css b/app/globals.css index 6352a24..965ae89 100644 --- a/app/globals.css +++ b/app/globals.css @@ -1,4 +1,4 @@ @import "tailwindcss"; @import "tw-animate-css"; -@import "../theme.css"; +@import "./styles/theme.css"; diff --git a/app/icon.png b/app/icon.png index 79fd6ec..de688e8 100644 Binary files a/app/icon.png and b/app/icon.png differ diff --git a/theme.css b/app/styles/theme.css similarity index 100% rename from theme.css rename to app/styles/theme.css diff --git a/components/shared/app-icon.tsx b/components/shared/app-icon.tsx index 0393493..dabc49b 100644 --- a/components/shared/app-icon.tsx +++ b/components/shared/app-icon.tsx @@ -1,7 +1,3 @@ -// components/shared/app-icon.tsx -// Scrum4Me app icon — concept 5 (Rocket) -// Gebruik: of - interface AppIconProps { size?: number className?: string @@ -20,51 +16,71 @@ export function AppIcon({ size = 32, className }: AppIconProps) { > - - + + - - + + + + + + + + + + {/* Background */} + {/* Block 1 — PBI */} - + + + + + {/* Block 2 — Story */} - + + + + {/* Block 3 — Task */} - + + + {/* Rocket nose */} - + + {/* Window */} - - - + + + + {/* Fins */} - - + + + + {/* Flame */} - - + + + ) } diff --git a/MD3_Color_Scheme_Documentation.md b/docs/MD3_Color_Scheme_Documentation.md similarity index 100% rename from MD3_Color_Scheme_Documentation.md rename to docs/MD3_Color_Scheme_Documentation.md diff --git a/Srum4MeIcons.html b/docs/icons.html similarity index 100% rename from Srum4MeIcons.html rename to docs/icons.html diff --git a/scrum4me-architecture.md b/docs/scrum4me-architecture.md similarity index 100% rename from scrum4me-architecture.md rename to docs/scrum4me-architecture.md diff --git a/scrum4me-backlog.md b/docs/scrum4me-backlog.md similarity index 100% rename from scrum4me-backlog.md rename to docs/scrum4me-backlog.md diff --git a/scrum4me-functional-spec.md b/docs/scrum4me-functional-spec.md similarity index 100% rename from scrum4me-functional-spec.md rename to docs/scrum4me-functional-spec.md diff --git a/scrum4me-personas.md b/docs/scrum4me-personas.md similarity index 100% rename from scrum4me-personas.md rename to docs/scrum4me-personas.md diff --git a/scrum4me-product-backlog.md b/docs/scrum4me-product-backlog.md similarity index 100% rename from scrum4me-product-backlog.md rename to docs/scrum4me-product-backlog.md diff --git a/scrum4me-styling.md b/docs/scrum4me-styling.md similarity index 100% rename from scrum4me-styling.md rename to docs/scrum4me-styling.md diff --git a/public/icon-192.png b/public/icon-192.png index 79fd6ec..dbc6c1e 100644 Binary files a/public/icon-192.png and b/public/icon-192.png differ diff --git a/public/icon-512.png b/public/icon-512.png index dfd1099..de688e8 100644 Binary files a/public/icon-512.png and b/public/icon-512.png differ