feat: add "MiRA at a glance" figure and rework the splash actions - #90
Merged
Merged
Conversation
Why MiRA page: - New "At a glance" section with the conceptual figure (load -> seven modes -> save), carrying a full descriptive alt so the content stays crawlable. - Move the app screenshot down into "See it in action", under the tutorial cards, so the two large visuals no longer stack. Splash screen: - Drop the lab attribution line; replace the single guidelines link with three actions: "MiRA at a glance", "See the manual", "Load example data". - "MiRA at a glance" opens the figure in a modal (X, backdrop click, and Esc all close it); "Load example data" opens the existing example-data dialog. - Extract _drawSplashActions() so each action records its own hit box. Fixes found while wiring this up: - InteractionHandler reset the canvas cursor on every mousemove and registered after the splash handler, so the action links never showed a pointer. It now returns early when no network is loaded, matching the renderer's own splash condition (!this.model), leaving hover with a loaded network untouched. - .dialog-box hard-codes width:360px, which a max-width cannot override, so the figure modal rendered tiny; .glance-dialog-box now sets an explicit width. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why MiRA page:
Splash screen:
Fixes found while wiring this up: