Adjacent routes — click a node to open it.userflow
flowchart LR
Start(["Visitor arrives"]) --> Products["/ressources/produits/ (Products)"]
Products --> Category["/ressources/produits/<category>/"]
Category --> ProductDetail["/ressources/produits/<category>/<slug>/"]
ProductDetail --> Checkout["/paiement/produit/<slug>/"]
Checkout --> Stripe["Stripe Checkout"]
Stripe -->|Paid| Return["/paiement/<ref>/retour/"]
Stripe -->|Cancelled| Cancel["/paiement/<ref>/annule/"]
Return --> Entitlement["/acces/<token>/"]
Cancel --> Products
ProductDetail -->|Free product| Entitlement
click Products "https://mickael-umt.com/ressources/produits/" "Open Products"
click Category "https://mickael-umt.com/ressources/produits/frameworks/" "Open Category"
click ProductDetail "https://mickael-umt.com/ressources/produits/frameworks/agentic-ai-framework/" "Open Product"
click Checkout "https://mickael-umt.com/paiement/produit/agentic-ai-framework/" "Open Checkout"
click Stripe "https://checkout.stripe.com" "Open Stripe"
click Return "https://mickael-umt.com/paiement/<ref>/retour/" "Open Return"
click Cancel "https://mickael-umt.com/paiement/<ref>/annule/" "Open Cancelled"
click Entitlement "https://mickael-umt.com/acces/<token>/" "Open Entitlement"