docs(website): add enterprise use-cases section and fix nav wrapping#574
Merged
Conversation
Add a #use-cases section to the homepage — six enterprise use cases (shared credentials, JIT + break-glass, AI pre-screened review, audit readiness, data privacy operations, API governance) as alternating narrative rows with persona tags, benefit bullets, and CSS-only mock visuals sourced from shipped capabilities. Wire the section into the desktop/mobile navs and footer, and record its content sources in the website README map. Fixing the nav for the extra item: nowrap on nav links/GitHub chip, tightened spacing so the full menu fits the max content width, a progressive collapse ladder (Quick start -> GitHub chip -> hamburger -> primary CTA), and the hamburger moved to the far right so its panel opens fully on-screen.
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.
What
Adds a Use cases section (
#use-cases) to the marketing homepage, between "How it works" and "Install", and fixes the header navigation so items never wrap onto two lines at any screen size.Use-cases section
.mock/.pillpatterns, theme variables only):website/README.mdsource map (docs/02, docs/05, docs/07, docs/17).Nav fix
Adding a seventh link surfaced that nav items wrapped internally ("How it works", the GitHub chip) because they lacked
white-space: nowrap— and with nowrap, the full menu was ~40px wider than the max content width. Fixed by:nowrapon nav links, GitHub chip, and mobile-panel links; tightened nav spacing so the full menu genuinely fits.order), fixing a pre-existing bug where its dropdown opened partially off-screen.Why
The homepage pitched features and mechanics but never showed when/why an enterprise would adopt AccessFlow — visitors had no problem-centric entry point. Copy is written at a mid-technical level for engineering leaders and security/compliance stakeholders.
Reviewer notes
styles.css, so the nav fix applies todocs/index.htmltoo.