diff --git a/index.mdx b/index.mdx index 23f06778..0b4cea9c 100644 --- a/index.mdx +++ b/index.mdx @@ -1,5 +1,5 @@ --- -title: "Cosmos Stack Developer Documentation" +title: "Cosmos Developer Documentation" mode: "custom" --- @@ -114,7 +114,7 @@ import { MobileMenuDrawer } from '/snippets/mobile-menu-drawer.jsx'; {/* Hero Text and Buttons */}

- Cosmos Stack Developer Documentation + Cosmos Developer Documentation

@@ -125,24 +125,33 @@ import { MobileMenuDrawer } from '/snippets/mobile-menu-drawer.jsx'; {/* Documentation Cards Section */}

+ - + -
diff --git a/sdk/latest/learn/start-here.mdx b/sdk/latest/learn/start-here.mdx index 87327f68..50ad04bb 100644 --- a/sdk/latest/learn/start-here.mdx +++ b/sdk/latest/learn/start-here.mdx @@ -56,16 +56,16 @@ For a technical overview of how a Cosmos chain is structured: Set up and operate a Cosmos node (validators, operators). -[Run a Node](/sdk/latest/tutorials) +- [Run a Node](/sdk/latest/tutorials) ## Browse modules Explore production-ready SDK modules and their documentation. -[Module Directory](/sdk/latest/modules/modules) +- [Module Directory](/sdk/latest/modules/modules) ## Go deeper Dive into advanced topics like ABCI++, vote extensions, mempool design, upgrades, and observability. -[In-depth Guides](/sdk/latest/guides/guides) +- [In-depth Guides](/sdk/latest/guides/guides) diff --git a/sdk/next/learn/start-here.mdx b/sdk/next/learn/start-here.mdx index b0730fa5..986dccd9 100644 --- a/sdk/next/learn/start-here.mdx +++ b/sdk/next/learn/start-here.mdx @@ -58,16 +58,16 @@ For a technical overview of how a Cosmos chain is structured: Set up and operate a Cosmos node (validators, operators). -[Run a Node](/sdk/next/tutorials) +- [Run a Node](/sdk/next/tutorials) ## Browse modules Explore production-ready SDK modules and their documentation. -[Module Directory](/sdk/next/modules/modules) +- [Module Directory](/sdk/next/modules/modules) ## Go deeper Dive into advanced topics like ABCI++, vote extensions, mempool design, upgrades, and observability. -[In-depth Guides](/sdk/next/guides/guides) +- [In-depth Guides](/sdk/next/guides/guides) diff --git a/snippets/doc-card.jsx b/snippets/doc-card.jsx index 031acbe6..e89aa050 100644 --- a/snippets/doc-card.jsx +++ b/snippets/doc-card.jsx @@ -1,6 +1,14 @@ 'use client' -export const DocCard = ({ title, description, docsLink, githubLink, isHighlighted }) => { +export const DocCard = ({ title, description, docsLink, docsLinkText, githubLink, githubLinkText, isHighlighted, links }) => { + const arrow = ( + + + + + + ) + return (
- {docsLink && ( + {links && links.map(({ href, label }) => ( - Read the docs - - - - - + {label} + {arrow} + + ))} + {docsLink && ( + + {docsLinkText || 'Read the docs'} + {arrow} )} {githubLink && !isHighlighted && ( - Github - - - - - + {githubLinkText || 'Github'} + {arrow} )}