Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 18 additions & 3 deletions src/app/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ title: Humanode Biomapper Docs
import Banner from "../components/Banner";
import { Cards } from "nextra/components";
import links from "../data/links";
import { bridgedChainsDisplayOrder, bridgedChains } from "../data/stages";

<Banner />

Expand Down Expand Up @@ -41,12 +42,26 @@ Integration instructions.
target="_blank"
arrow
/>
<Cards.Card title="Showcase" href="/showcase" arrow />
</Cards>

### Bridged Chains

<Cards>
{bridgedChainsDisplayOrder.map((bridgedChainId) => (
<Cards.Card
title={bridgedChains[bridgedChainId].generalDisplayName}
href={`/integration/chains/${bridgedChainId}`}
arrow
/>
))}
</Cards>

## Showcase
## Guides

A showcase of integartions with Humanode Biomapper.
### How to get eHMND

<Cards>
<Cards.Card title="Showcase" href="/showcase" arrow />
<Cards.Card title="Mainnet" href="/get-ehmnd/mainnet" arrow />
<Cards.Card title="Testnet" href="/get-ehmnd/testnet" arrow />
</Cards>