Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the Community docs page to use locally bundled forum/community banner images instead of hotlinking to external Discourse CDN URLs (to avoid broken banners and improve reliability).
Changes:
- Replace external banner image URLs in
website/docs/community/index.mdxwith local static image references (light/dark variants). - Add new PNG banner assets under
website/static/img/for cybozu developer community and kintone developer forum (plus cybozu developer network variants).
Reviewed changes
Copilot reviewed 1 out of 9 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| website/docs/community/index.mdx | Switches ThemedImage sources from external URLs to locally bundled banner images. |
| website/static/img/kintone-developer-forum.png | Adds light banner asset for kintone developer forum. |
| website/static/img/kintone-developer-forum-dark.png | Adds dark banner asset for kintone developer forum. |
| website/static/img/cybozu-developer-community.png | Adds light banner asset for cybozu developer community. |
| website/static/img/cybozu-developer-community-dark.png | Adds dark banner asset for cybozu developer community. |
| website/static/img/cybozu-developer-network.png | Adds cybozu developer network banner asset (currently not referenced). |
| website/static/img/cybozu-developer-network-dark.png | Adds cybozu developer network dark banner asset (currently not referenced). |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
28
to
41
| @@ -36,8 +36,8 @@ import Link from "@docusaurus/Link"; | |||
| <ThemedImage | |||
| alt="Banner of kintone developer forum" | |||
| sources={{ | |||
| light: 'https://global.discourse-cdn.com/standard17/uploads/kintone/original/1X/22edf6309a55df93b0e1c1a0bc76e9a632aad507.png', | |||
| dark: 'https://global.discourse-cdn.com/standard17/uploads/kintone/original/1X/ea7860dd7df008122e858768c806501321c2ef8e.png', | |||
| light: require("@site/static/img/kintone-developer-forum.png").default, | |||
| dark: require("@site/static/img/kintone-developer-forum-dark.png").default, | |||
| }} | |||
There was a problem hiding this comment.
In MDX, inlining require(...) inside the JSX makes the markup harder to scan and repeats the path lookups. Consider importing these images once at the top of the file (or defining constants) and referencing the variables in sources.
nameless-mc
approved these changes
Feb 25, 2026
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
What
How to test
Checklist
pnpm lintandpnpm teston the root directory.