unov-landing/CLAUDE.md
2026-03-25 17:39:14 +01:00

35 lines
858 B
Markdown

# unov-landing
Site vitrine de la société **Unov** (qui développe MyInfoMate).
## Stack
- Next.js 16 / React 19 / TypeScript
- Tailwind CSS v4
- Babel React Compiler
## Structure
```
src/
├── app/
│ ├── layout.tsx # Layout global, font "Public Sans"
│ ├── page.tsx # Page d'accueil
│ ├── globals.css # Thème Tailwind v4
│ └── portfolio/
│ └── page.tsx # Page portfolio
└── data/
└── stitch-images.ts # Assets Stitch
```
## Thème
- Couleur primaire : `#309CB0` (teal), variantes `#72B9C4`, `#ABD3DC`
- Support dark mode
- Utilities custom : `glass-card`, `material-symbols-outlined`
- Animation : `marquee` (30s linear infinite)
## Commandes
```bash
npm run dev # Dev local
npm run build # Build production
npm run lint # ESLint
```