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.
CUDOS Docs is built using Docusaurus 2, a static website generator.
-
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.
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.
- Check out these resources to help create good titles and descriptions for SEO:
- Google's recommendation on good titles
- Google's recommendation on good descriptions In general, titles should be between 50 and 60 characters and descriptions should be between 110 and 160 characters.
- 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]
---
Images are stored in static/img
folder.
Images can be referenced in three different ways: Markdown syntax, CJS require, or ES imports syntax.
- Markdown Syntax
![Active Proposal](@site/static/img/active-proposal.png)
- CommonJS require
<img
src={require('@site/static/img/active-proposal.png').default}
alt="Active Proposal"
/>
- Import statement
import myImageUrl from '@site/static/img/active-proposal.png';
<img src={myImageUrl} alt="Active Proposal" />;