Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 0 additions & 2 deletions .gitbook/developers/modules.md

This file was deleted.

22 changes: 22 additions & 0 deletions .gitbook/developers/modules/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import {
HomepageCard as Card,
HomepageSection as Section,
} from "../../../src/components/HomepageComponents";
import { DistributedIcon, CoreModulesIcon } from "../../../src/icons";

# Injective Modules

<Section title="Modules define most of the logic of the application specific blockchains. Developers compose modules together using the Cosmos SDK to build their custom application-specific blockchains.">
<Card
title="Injective Modules"
description="Learn about the Modules unique to Injective."
to="/develop/modules/injective/auction/"
icon={<DistributedIcon />}
/>
<Card
title="Cosmos Native Modules"
description="Core Cosmos SDK Modules"
to="/develop/modules/core/auth/"
icon={<CoreModulesIcon />}
/>
</Section>
14 changes: 14 additions & 0 deletions .gitbook/developers/modules/core/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import {
HomepageSection as Section
} from "../../../../src/components/HomepageComponents";
import ComponentsGrid from "@theme/DocCardList";

# Core Modules

<Section
title="Modules define most of the logic of Cosmos SDK applications. Developers compose modules together using the Cosmos SDK to build their custom application-specific blockchains."
id="web-sdks"
hasSubSections
>
<ComponentsGrid />
</Section>
Loading