fix(website): brand as "Go Micro" not "GoMicro" - #4862
Merged
Conversation
The site title, og:site_name, hero heading, PWA manifest, and package author read "GoMicro" with no space. Add the space everywhere it appears as a brand name. Leaves the GoMicroToolkit Python class name in code samples untouched.
There was a problem hiding this comment.
Pull request overview
This PR standardizes the website brand text to “Go Micro” (with a space) across site metadata and UI, aligning the docs site presentation with the intended project branding.
Changes:
- Updated PWA/web manifest
short_namevalues to “Go Micro”. - Updated website metadata strings (Hugo language title/description, Apple web app title meta tag).
- Updated visible homepage hero brand text and the website package author string.
Reviewed changes
Copilot reviewed 1 out of 7 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| internal/website/static/favicons/site.webmanifest | Updates PWA manifest short_name to the spaced brand name. |
| internal/website/package.json | Updates the author string to “Go Micro …”. |
| internal/website/layouts/_partials/favicons.html | Updates Apple web app title meta content to “Go Micro”. |
| internal/website/hugo.yaml | Updates Hugo language title/description for consistent branding. |
| internal/website/content/en/_index.md | Updates homepage hero brand text to “Go Micro”. |
| internal/website/assets/icons/favicon/site.webmanifest | Keeps favicon source manifest aligned with the generated/static manifest branding. |
| internal/website/assets/icons/favicon-settings.json | Updates favicon generator settings shortName to match branding. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| <div class="text-center mb-5"> | ||
| <h1 class="display-3 fw-bold mb-4"> | ||
| <span class="gradient-text">GoMicro</span></br> | ||
| <span class="gradient-text">Go Micro</span></br> |
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.
The site title, og:site_name, hero heading, PWA manifest, and package author read "GoMicro" with no space. Add the space everywhere it appears as a brand name.
Leaves the GoMicroToolkit Python class name in code samples untouched.