feat(navbar): replace title text with "Try Kite" CTA button#17
Merged
Conversation
Remove the redundant "Kite" word next to the logo (the logo already reads "kite"), and turn the plain "Kite" navbar link into a styled orange "Try Kite" call-to-action button. The button uses the existing --ifm-color-primary vars so it works in both light and dark themes. It carries a navbar-try-button class and uses CSS order:1 to sit after the color-mode toggle (Docusaurus 3.9.2 renders the toggle inside .navbar__items--right), giving a right-side order of: search, theme toggle, Try Kite. The auto-added external-link icon is hidden on the button only. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
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 changed
Why
The header had the brand word duplicated (logo + text), and the existing link was a low-emphasis text item. A single CTA button is cleaner and gives users an obvious entry point.
Notes for reviewers
--ifm-color-primaryvars, so it works in both light and dark mode.navbar-try-buttonclass + CSSorder: 1to sit after the color-mode toggle. Docusaurus 3.9.2 renders the toggle inside.navbar__items--right, so the appsmith-docs:last-childapproach wouldn't work here — the class+order approach is robust regardless of DOM order. Right-side order is now: search · theme toggle · Try Kite.Verify
cd website && yarn start, then confirm the navbar right side reads search → theme toggle → orange "Try Kite" button, looks right in both themes, and the button links to https://kite.ai.🤖 Generated with Claude Code