Open
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR adds a new “Checks” Learn article and links to it from the Check service page, while also exposing the new page via the Learn index and sitemap.
Changes:
- Add a new
/learn/checkspage (article content + images). - Add a “Learn more” link on
/services/checkpointing to the new article. - Register
/learn/checksin the Learn index andsitemap.xml.
Reviewed changes
Copilot reviewed 4 out of 13 changed files in this pull request and generated 5 comments.
Show a summary per file
| File | Description |
|---|---|
| public/images/xahauexplorer/learn/checks/cover.jpg | Adds the Xahau cover image used by the new Learn article. |
| pages/sitemap.xml.js | Adds learn/checks to sitemap routes and non-translated pages list. |
| pages/services/check.js | Adds a short explanatory paragraph + link to /learn/checks on the Issue Check page. |
| pages/learn/index.js | Adds “Checks explained” to the Learn landing page cards. |
| pages/learn/checks.js | Introduces the new Learn article page for checks (content + images). |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
You can also share your feedback on Copilot code review. Take the survey.
| <ul> | ||
| <li>Offering a user-friendly web interface for quick and easy check creation.</li> | ||
| <li> | ||
| Supporting wallet-based signing (Ledger, Xaman, Gem, MataMask, WalletConnect, CROSSMARK, and others ). |
Comment on lines
25
to
+28
| import { LinkTx, LinkAccount } from '../../utils/links' | ||
| import Link from 'next/link' | ||
| import { errorCodeDescription } from '../../utils/transaction' | ||
|
|
||
| import { explorerName} from '../../utils' |
Comment on lines
+243
to
+247
| A check lets you send funds that the recipient can claim later.{" "} | ||
| <Link href="/learn/checks" target="_blank" rel="noreferrer"> | ||
| Learn more about checks on {explorerName}. | ||
| </Link> | ||
| </p> |
Comment on lines
+4
to
+5
| import { nativeCurrency, network } from '../../utils' | ||
| import { explorerName, xahauNetwork, webSiteName, ledgerName } from '../../utils' |
| <h3>Create a check</h3> | ||
|
|
||
| <p> | ||
| You can issue a check <a href="https://bithomp.com/en/services/check">HERE</a> |
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.
article is added +article link on the /services/check page.