/cudos-docs

Single-source-of-truth for Cudos

Primary LanguageJavaScript

Documentation for CUDOS Network

This repository contains documentation for CUDOS Network, a special purpose network that is part of the Cosmos Ecosystem and built on Tendermint. Here, you'll find high-level and technical information for developers, validators, token holders and community members interested in governance and anyone interested in finding out more about the CUDOS Network.

You are welcome to join the CUDOS Community and contribute to the docs and to the CUDOS project.

About CUDOS Docs

CUDOS Docs is built using Docusaurus 2, a static website generator.

How to contribute

  • If you're interested in contributing to this repo, feel free to clone the repo, make changes and open a PR.

  • You can also open an issue.

Preview changes locally

To preview your changes as you edit the files, you can run a local development server that will serve your website and reflect the latest changes.

cd my-website
npm run start

By default, a browser window opens at http://localhost:3000.

Search Engine Optimisation (SEO)

  1. Check out these resources to help create good titles and descriptions for SEO:
  1. Add SEO guidance to front matter in the markdown file.
---
title: Title for search engines; can be different from the actual heading
description: A short description of this page
image: a thumbnail image to be shown in social media cards
keywords: [keywords, describing, the main topics]
---

Adding Images

Images are stored in static/img folder. Images can be referenced in three different ways: Markdown syntax, CJS require, or ES imports syntax.

  1. Markdown Syntax
![Active Proposal](@site/static/img/active-proposal.png)
  1. CommonJS require
<img
  src={require('@site/static/img/active-proposal.png').default}
  alt="Active Proposal"
/>
  1. Import statement
import myImageUrl from '@site/static/img/active-proposal.png';

<img src={myImageUrl} alt="Active Proposal" />;