Skip to content

Commit

Permalink
feat: try alternate top-level structure (#12)
Browse files Browse the repository at this point in the history
* feat: try alternate top-level structure

* Update index.tsx
  • Loading branch information
xavier-brochard authored Oct 4, 2024
1 parent 391ed8b commit 33f6c29
Show file tree
Hide file tree
Showing 13 changed files with 62 additions and 62 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
44 changes: 22 additions & 22 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -163,44 +163,44 @@ const config = {
type: "doc",
docId: "custodian/index",
position: "left",
label: "Custodian",
},
{
type: "doc",
docId: "eca1/index",
position: "left",
label: "ECA1",
},
{
type: "doc",
docId: "eca3/index",
position: "left",
label: "ECA3",
label: "Custodian integrations",
},
// {
// type: "doc",
// docId: "eca1/index",
// position: "left",
// label: "ECA1",
// },
// {
// type: "doc",
// docId: "eca3/index",
// position: "left",
// label: "ECA3",
// },
{
type: "docSidebar",
sidebarId: "stakingSidebar",
docId: "staking/introduction",
position: "left",
label: "Staking",
label: "Staking integrations",
},
{
type: "doc",
docId: "api/index",
position: "left",
label: "API",
},
{
type: "doc",
docId: "sdk/index",
position: "left",
label: "SDK",
label: "MMI API suite",
},
// {
// type: "doc",
// docId: "sdk/index",
// position: "left",
// label: "SDK",
// },
{
type: "doc",
docId: "defi-adapters/index",
position: "left",
label: "DeFi Adapters",
label: "DeFi adapter developers",
},
{
href: "https://github.com/consensys-vertical-apps/metamask-institutional",
Expand Down
80 changes: 40 additions & 40 deletions src/components/HomepageCards/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ type CardItem = {
const CardList: CardItem[][] = [
[
{
title: "Custodian",
title: "Custodian integrations",
link: "/custodian",
description: (
<>
Expand All @@ -34,34 +34,34 @@ const CardList: CardItem[][] = [
buttonName: "Get started",
buttonType: "secondary",
},
{
title: "ECA1",
link: "/eca1",
description: (
<>
Implement the Ethereum Custodian JSON-RPC API to allow MetaMask
Institutional to send user transactions to your platform.
</>
),
buttonName: "Get started",
buttonType: "secondary",
},
{
title: "ECA3",
link: "/eca3",
description: (
<>
Implement the Ethereum Custodian JSON-RPC API to allow MetaMask
Institutional to send user transactions to your platform.
</>
),
buttonName: "Get started",
buttonType: "secondary",
},
// {
// title: "ECA1",
// link: "/eca1",
// description: (
// <>
// Implement the Ethereum Custodian JSON-RPC API to allow MetaMask
// Institutional to send user transactions to your platform.
// </>
// ),
// buttonName: "Get started",
// buttonType: "secondary",
// },
// {
// title: "ECA3",
// link: "/eca3",
// description: (
// <>
// Implement the Ethereum Custodian JSON-RPC API to allow MetaMask
// Institutional to send user transactions to your platform.
// </>
// ),
// buttonName: "Get started",
// buttonType: "secondary",
// },
],
[
{
title: "Staking",
title: "Staking integrations",
link: "/staking/introduction",
description: (
<>
Expand All @@ -73,7 +73,7 @@ const CardList: CardItem[][] = [
buttonType: "secondary",
},
{
title: "API",
title: "MMI API suite",
link: "/api",
description: (
<>
Expand All @@ -84,20 +84,20 @@ const CardList: CardItem[][] = [
buttonName: "Get started",
buttonType: "secondary",
},
// {
// title: "SDK",
// link: "/sdk",
// description: (
// <>
// Use our Python library to create and submit Ethereum transactions to
// custodians connected with MetaMask Institutional.
// </>
// ),
// buttonName: "Get started",
// buttonType: "secondary",
// },
{
title: "SDK",
link: "/sdk",
description: (
<>
Use our Python library to create and submit Ethereum transactions to
custodians connected with MetaMask Institutional.
</>
),
buttonName: "Get started",
buttonType: "secondary",
},
{
title: "DeFi Adapters",
title: "DeFi adapter developers",
link: "/defi-adapters",
description: (
<>
Expand Down

0 comments on commit 33f6c29

Please sign in to comment.