From d3c61ddc7b9f1a87428d378178f97f9a6e9de592 Mon Sep 17 00:00:00 2001 From: evanorti <87997759+evanorti@users.noreply.github.com> Date: Mon, 13 Apr 2026 11:34:09 -0400 Subject: [PATCH 1/9] Update index.mdx --- index.mdx | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/index.mdx b/index.mdx index 23f06778..6fbe8555 100644 --- a/index.mdx +++ b/index.mdx @@ -125,24 +125,32 @@ import { MobileMenuDrawer } from '/snippets/mobile-menu-drawer.jsx'; {/* Documentation Cards Section */}
+ - + -
From 58e0f5243e9a52a30a83dba0455d54edefd2557f Mon Sep 17 00:00:00 2001 From: evanorti <87997759+evanorti@users.noreply.github.com> Date: Mon, 13 Apr 2026 11:34:22 -0400 Subject: [PATCH 2/9] Update doc-card.jsx --- snippets/doc-card.jsx | 42 +++++++++++++++++++++++++++++++++++++++++- 1 file changed, 41 insertions(+), 1 deletion(-) diff --git a/snippets/doc-card.jsx b/snippets/doc-card.jsx index 031acbe6..b6ba53e2 100644 --- a/snippets/doc-card.jsx +++ b/snippets/doc-card.jsx @@ -1,6 +1,6 @@ 'use client' -export const DocCard = ({ title, description, docsLink, githubLink, isHighlighted }) => { +export const DocCard = ({ title, description, docsLink, githubLink, isHighlighted, primaryLink, primaryLinkText, secondaryLink, secondaryLinkText }) => { return (
+ {primaryLink && ( + + {primaryLinkText} + + + + + + + )} + {secondaryLink && ( + + {secondaryLinkText} + + + + + + + )} {docsLink && ( Date: Mon, 13 Apr 2026 11:37:51 -0400 Subject: [PATCH 3/9] Update doc-card.jsx --- snippets/doc-card.jsx | 49 ++++--------------------------------------- 1 file changed, 4 insertions(+), 45 deletions(-) diff --git a/snippets/doc-card.jsx b/snippets/doc-card.jsx index b6ba53e2..d1444541 100644 --- a/snippets/doc-card.jsx +++ b/snippets/doc-card.jsx @@ -1,6 +1,6 @@ 'use client' -export const DocCard = ({ title, description, docsLink, githubLink, isHighlighted, primaryLink, primaryLinkText, secondaryLink, secondaryLinkText }) => { +export const DocCard = ({ title, description, docsLink, docsLinkText, githubLink, githubLinkText, isHighlighted }) => { return (
- {primaryLink && ( - - {primaryLinkText} - - - - - - - )} - {secondaryLink && ( - - {secondaryLinkText} - - - - - - - )} {docsLink && ( - Read the docs + {docsLinkText || 'Read the docs'} @@ -97,8 +57,7 @@ export const DocCard = ({ title, description, docsLink, githubLink, isHighlighte {githubLink && !isHighlighted && ( - Github + {githubLinkText || 'Github'} From 06afff147eda3d9a76ba6d412acc280672911f07 Mon Sep 17 00:00:00 2001 From: evanorti <87997759+evanorti@users.noreply.github.com> Date: Mon, 13 Apr 2026 11:37:53 -0400 Subject: [PATCH 4/9] Update index.mdx --- index.mdx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/index.mdx b/index.mdx index 6fbe8555..553de0a5 100644 --- a/index.mdx +++ b/index.mdx @@ -128,10 +128,10 @@ import { MobileMenuDrawer } from '/snippets/mobile-menu-drawer.jsx'; Date: Mon, 13 Apr 2026 11:58:05 -0400 Subject: [PATCH 5/9] Update index.mdx --- index.mdx | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/index.mdx b/index.mdx index 553de0a5..59dad7de 100644 --- a/index.mdx +++ b/index.mdx @@ -127,11 +127,12 @@ import { MobileMenuDrawer } from '/snippets/mobile-menu-drawer.jsx'; Date: Mon, 13 Apr 2026 11:58:07 -0400 Subject: [PATCH 6/9] Update start-here.mdx --- sdk/latest/learn/start-here.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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) From e7306da64a0f0d847e766d8acf64be1411369eab Mon Sep 17 00:00:00 2001 From: evanorti <87997759+evanorti@users.noreply.github.com> Date: Mon, 13 Apr 2026 11:58:09 -0400 Subject: [PATCH 7/9] Update doc-card.jsx --- snippets/doc-card.jsx | 52 +++++++++++++++++++------------------------ 1 file changed, 23 insertions(+), 29 deletions(-) diff --git a/snippets/doc-card.jsx b/snippets/doc-card.jsx index d1444541..e89aa050 100644 --- a/snippets/doc-card.jsx +++ b/snippets/doc-card.jsx @@ -1,6 +1,14 @@ 'use client' -export const DocCard = ({ title, description, docsLink, docsLinkText, githubLink, githubLinkText, isHighlighted }) => { +export const DocCard = ({ title, description, docsLink, docsLinkText, githubLink, githubLinkText, isHighlighted, links }) => { + const arrow = ( + + + + + + ) + return (
From d7dc78315071cfdd9f2f849d2e81e1e71ca6d22f Mon Sep 17 00:00:00 2001 From: evanorti <87997759+evanorti@users.noreply.github.com> Date: Mon, 13 Apr 2026 12:00:13 -0400 Subject: [PATCH 8/9] Update index.mdx --- index.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.mdx b/index.mdx index 59dad7de..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

From bb9d70584952f54b17e6a4b9f3ed4b34ba7b3310 Mon Sep 17 00:00:00 2001 From: evanorti <87997759+evanorti@users.noreply.github.com> Date: Mon, 13 Apr 2026 12:07:24 -0400 Subject: [PATCH 9/9] Update start-here.mdx --- sdk/next/learn/start-here.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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)