0g-chain/docs/.vuepress/config.js
Cyrus Goh 97a51479f6
Docs config (#605)
* bump 1.0.167

* code blocks sh → bash

* update color variables

* clean up sidebar, add footer

* sh → bash

* tweak kava logo.svg

* bump 1.0.168

* update sidebar, footer

Co-authored-by: denalimarsh <denalimarsh@gmail.com>
2020-07-03 02:00:29 -07:00

138 lines
3.1 KiB
JavaScript

module.exports = {
theme: "cosmos",
title: "Kava Documentation",
themeConfig: {
logo: {
src: "/logo.svg",
},
custom: true,
sidebar: {
auto: false,
nav: [
{
title: "Reference",
children: [
{
title: "Modules",
path: "/Modules",
directory: true
},
]
},
{
title: "Kava Tools",
children: [
{
title: "Chainlink Price Oracle",
path: "/tools/oracle.html"
},
{
title: "Auction Bot",
path: "/tools/auction.html",
}
]
},
{
title: "Building on Kava",
children: [
{
title: "JavaScript SDK",
path: "/building/javascript-sdk.html"
},
{
title: "Migration Guide: kava-3",
path: "/building/kava-3-migration-guide.html"
}
]
},
{
title: "Resources",
children: [
{
title: "REST API Spec",
path: "https://rpc.kava.io/"
},
{
title: "Protocol Reference",
path: "https://pkg.go.dev/github.com/kava-labs/kava?tab=subdirectories"
}
]
}
]
},
footer: {
logo: "/logo.svg",
textLink: {
text: "kava.io",
url: "https://www.kava.io"
},
services: [
{
service: "twitter",
url: "https://twitter.com/kava_labs"
},
{
service: "medium",
url: "https://medium.com/kava-labs"
},
{
service: "telegram",
url: "https://t.me/kavalabs"
},
{
service: "discord",
url: "https://discord.com/invite/kQzh3Uv"
},
{
service: "github",
url: "https://github.com/kava-labs"
}
],
smallprint:
`© ${new Date().getFullYear()} Kava Labs.`,
links: [
{
title: "Community",
children: [
{
title: "Blog",
url: "https://medium.com/kava-labs"
},
{
title: "Chat",
url: "https://t.me/kavalabs"
}
]
},
{
title: "Contributing",
children: [
{
title: "Contributing to the docs",
url:
"https://github.com/Kava-Labs/kava/tree/master/docs"
},
{
title: "Source code on GitHub",
url: "https://github.com/Kava-Labs/kava"
}
]
},
{
title: "Related Docs",
children: [
{
title: "Cosmos SDK",
url: "https://cosmos.network/docs"
},
{
title: "Binance Chain",
url: "https://docs.binance.org"
}
]
},
]
}
}
};