chore: complete initial setup for Next.js project with TypeScript, Tailwind CSS, ESLint, and Prettier; remove unnecessary .DS_Store file

This commit is contained in:
Julien Froidefond
2025-11-27 12:57:36 +01:00
parent 5234428cc3
commit 6d95529579
26 changed files with 11424 additions and 5 deletions

View File

@@ -15,10 +15,10 @@ Application de gestion d'ateliers SWOT pour entretiens managériaux.
## Phase 1 : Setup Initial
- [ ] Initialiser Next.js 15 avec TypeScript
- [ ] Configurer Tailwind CSS avec le système de CSS Variables
- [ ] Setup ESLint + Prettier
- [ ] Créer la structure de dossiers
- [x] Initialiser Next.js 15 avec TypeScript
- [x] Configurer Tailwind CSS avec le système de CSS Variables
- [x] Setup ESLint + Prettier
- [x] Créer la structure de dossiers
```
src/
├── app/
@@ -39,7 +39,7 @@ Application de gestion d'ateliers SWOT pour entretiens managériaux.
├── contexts/ # React Contexts
└── actions/ # Server Actions
```
- [ ] Configurer les CSS Variables pour le theming (light/dark)
- [x] Configurer les CSS Variables pour le theming (light/dark)
---