Skip to content

Commit 18f348f

Browse files
committed
[Documentation] Feature: Add page for supported chains on insight (#5412)
## Problem solved Short description of the bug fixed or feature added <!-- start pr-codex --> --- ## PR-Codex overview This PR introduces a new section in the sidebar for "Supported Chains" and adds a corresponding page with metadata and content in `page.mdx`. ### Detailed summary - Added a new entry for "Supported Chains" in the sidebar of `sidebar.tsx`. - Created metadata for the new page in `page.mdx` using `createMetadata`. - Added a title, description, and image metadata for the "Supported Chains" page. - Included introductory content and links in `page.mdx`. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex -->
1 parent b30c4d0 commit 18f348f

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

apps/portal/src/app/insight/sidebar.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ export const sidebar: SideBar = {
1313
name: "Get Started",
1414
href: `${insightSlug}/get-started`,
1515
},
16+
{
17+
name: "Supported Chains",
18+
href: `${insightSlug}/supported-chains`,
19+
},
1620
{
1721
name: "Blueprints",
1822
href: `${insightSlug}/blueprints`,
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import { createMetadata } from "@doc";
2+
3+
export const metadata = createMetadata({
4+
title: "thirdweb Insight - Supported Chains",
5+
description: "List of chains indexed by thirdweb Insight.",
6+
image: {
7+
title: "thirdweb Insight - Supported Chains",
8+
icon: "insight",
9+
},
10+
});
11+
12+
# Supported Chains
13+
14+
[View all chains indexed via thirdweb Insight](https://thirdweb.com/chainlist?service=insight).
15+
16+
If you’d like to suggest a chain for us to support, [contact us](https://thirdweb.com/contact-us).

0 commit comments

Comments
 (0)