MaximaLabsOpen app

AI Copilot — Interactive Launchpads

One-click quick-prompts on the marketing site and in the empty-canvas state deep-link straight into a live, running workspace via `/app?example=<id>` — no manual rebuild step.

aideep-link
Concept

Every "Try this example" card on the marketing site and every Copilot-suggested template deep-links straight into a live, running workspace — /app?example=<id> — rather than making you rebuild the flowsheet by hand.

The math
Show the governing equations
/app?example=<id>    GET /api/examples/<id>    canvas mount\texttt{/app?example=<id>} \;\rightarrow\; \texttt{GET /api/examples/<id>} \;\rightarrow\; \text{canvas mount}
App.tsx's mount effect reads the ?example= query param, fetches the curated flowsheet, and loads it via the same onLoadFlowsheet path a manual canvas load uses — no special-cased rendering.
Execution