Skip to content

Commit

Permalink
fix links (#413)
Browse files Browse the repository at this point in the history
* fix links

* add some doc links
  • Loading branch information
hackfisher authored Apr 25, 2024
1 parent 33061a9 commit 258a5a0
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
12 changes: 11 additions & 1 deletion src/components/FooterLinks/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,22 @@ export const columns: { sections: Section[] }[] = [
{
title: "Documentation",
links: [
{ text: "Documentation", href: "https://docs.darwinia.network/", isExternal: true },
{ text: "Darwinia", href: "https://docs.darwinia.network/", isExternal: true },
{
text: "Msgport",
href: "https://docs.msgport.xyz/",
isExternal: true,
},
{
text: "Helix Bridge",
href: "https://docs.helixbridge.app/",
isExternal: true,
},
{
text: "XToken",
href: "https://xtoken.box/docs.html",
isExternal: true,
},
],
},
],
Expand Down
2 changes: 1 addition & 1 deletion src/components/Header/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export const navigations: {
},
{
label: "Run A Node",
link: "https://docs.darwinia.network/evm/tutorial/chain/run-collator-node/",
link: "https://docs.darwinia.network/build/chain/run-collator-node/",
isExternal: true,
},
],
Expand Down
2 changes: 1 addition & 1 deletion src/components/Resources/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const resources: { icon: string; title: string; description: string; detail: { l
icon: "/images/resources/technical-docs.png",
title: "Build Docs",
description: "Start building your Cross-Chain DApp on Darwinia.",
detail: { link: "https://darwinia-docs-dev.vercel.app/build/smart-contract/interact-with-web3js//" },
detail: { link: "https://docs.darwinia.network/build/smart-contract/interact-with-web3js/" },
},
{
icon: "/images/resources/developer-assistance.png",
Expand Down
2 changes: 1 addition & 1 deletion src/components/UseCase/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ contract ExampleXAccount {
IMessagePort(port).send{value: msg.value}(toChainId, module, message, params);
}
}`,
link: "https://docs.darwinia.network/msgport/use-cases/xaccount/",
link: "https://docs.msgport.xyz/build/use-cases/xaccount/",
description:
"XAccount is a component within Darwinia Msgport, xAccount simplifies the user experience in executing cross-chain operations.",
language: "solidity",
Expand Down

0 comments on commit 258a5a0

Please sign in to comment.