Adjacent routes — click a node to open it.taskflow
flowchart TD
A["Start: visitor arrives"] --> B["Load / (Home)"]
B --> C["Render hero matrix"]
C --> D["Render specialty bento"]
D --> E["Render positioning columns"]
E --> F["Scan primary CTAs"]
F --> G{"Choose action"}
G -->|Explore| H["Click Capabilities"]
G -->|See proof| I["Click Projects"]
G -->|Learn more| J["Click CV / Engagement"]
G -->|Tools| K["Click Calculator"]
G -->|Contact| L["Click Contact"]
H --> M["/expertises/"]
I --> N["/realisations/"]
J --> O["/parcours/ or /engagement/"]
K --> P["/outils/calculator/"]
L --> Q["/contact/"]
F --> R["Scroll to read more"]
R --> S["View articles or programmes"]
click B "http://localhost:8000/" "Open Home"
click M "http://localhost:8000/expertises/" "Open Capabilities"
click N "http://localhost:8000/realisations/" "Open Projects"
click O "http://localhost:8000/parcours/" "Open CV"
click P "http://localhost:8000/outils/calculator/" "Open Calculator"
click Q "http://localhost:8000/contact/" "Open Contact"