Skip to content

Commit 4d36931

Browse files
crodriguezvegacharleenfeicolin-axner
authored
fix: ibc build docs (#361) (#414)
* initial fix commit * add release v1.0.1 to versions * improvements for docs website * add new version * address review comments Co-authored-by: Carlos Rodriguez <[email protected]> Co-authored-by: colin axnér <[email protected]> Co-authored-by: Charly <[email protected]> Co-authored-by: Carlos Rodriguez <[email protected]> Co-authored-by: colin axnér <[email protected]>
1 parent 1e0a7f0 commit 4d36931

13 files changed

+347
-245
lines changed

docs/.vuepress/config.js

+53-3
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,22 @@ module.exports = {
77
},
88
},
99
base: process.env.VUEPRESS_BASE || "/",
10+
head: [
11+
['link', { rel: "apple-touch-icon", sizes: "180x180", href: "/apple-touch-icon.png" }],
12+
['link', { rel: "icon", type: "image/png", sizes: "32x32", href: "/favicon-32x32.png" }],
13+
['link', { rel: "icon", type: "image/png", sizes: "16x16", href: "/favicon-16x16.png" }],
14+
['link', { rel: "manifest", href: "/site.webmanifest" }],
15+
['meta', { name: "msapplication-TileColor", content: "#2e3148" }],
16+
['meta', { name: "theme-color", content: "#ffffff" }],
17+
['link', { rel: "icon", type: "image/svg+xml", href: "/favicon-svg.svg" }],
18+
['link', { rel: "apple-touch-icon-precomposed", href: "/apple-touch-icon-precomposed.png" }],
19+
],
1020
themeConfig: {
1121
repo: "cosmos/ibc-go",
1222
docsRepo: "cosmos/ibc-go",
1323
docsDir: "docs",
1424
editLinks: true,
1525
label: "ibc",
16-
// label: "ibc-go",
1726
// TODO
1827
//algolia: {
1928
// id: "BH4D9OD16A",
@@ -24,8 +33,19 @@ module.exports = {
2433
{
2534
"label": "main",
2635
"key": "main"
27-
}
36+
},
37+
{
38+
"label": "v1.1.0",
39+
"key": "v1.1.0"
40+
},
41+
{
42+
"label": "v1.2.0",
43+
"key": "v1.2.0"
44+
}
2845
],
46+
topbar: {
47+
banner: true
48+
},
2949
sidebar: {
3050
auto: false,
3151
nav: [
@@ -105,11 +125,41 @@ module.exports = {
105125
}
106126
},
107127
footer: {
108-
logo: "/logo-bw.svg",
128+
question: {
129+
text: "Chat with IBC developers in <a href='https://discord.gg/W8trcGV' target='_blank'>Discord</a>."
130+
},
109131
textLink: {
110132
text: "ibcprotocol.org",
111133
url: "https://ibcprotocol.org"
112134
},
135+
services: [
136+
{
137+
service: "medium",
138+
url: "https://blog.cosmos.network/"
139+
},
140+
{
141+
service: "twitter",
142+
url: "https://twitter.com/cosmos"
143+
},
144+
{
145+
service: "linkedin",
146+
url: "https://www.linkedin.com/company/interchain-gmbh"
147+
},
148+
{
149+
service: "reddit",
150+
url: "https://reddit.com/r/cosmosnetwork"
151+
},
152+
{
153+
service: "telegram",
154+
url: "https://t.me/cosmosproject"
155+
},
156+
{
157+
service: "youtube",
158+
url: "https://www.youtube.com/c/CosmosProject"
159+
}
160+
],
161+
smallprint:
162+
"The development of IBC-Go is led primarily by [Interchain GmbH](https://interchain.berlin/). Funding for this development comes primarily from the Interchain Foundation, a Swiss non-profit.",
113163
links: [
114164
{
115165
title: "Documentation",

docs/.vuepress/public/android-chrome-192x192.png

100644100755
7.82 KB
Loading

docs/.vuepress/public/android-chrome-256x256.png

100644100755
9.63 KB
Loading

docs/.vuepress/public/apple-touch-icon-precomposed.png

100644100755
5.14 KB
Loading

docs/.vuepress/public/apple-touch-icon.png

100644100755
8.42 KB
Loading
753 Bytes
Loading
951 Bytes
Loading

docs/.vuepress/public/mstile-150x150.png

100644100755
2.66 KB
Loading

docs/.vuepress/styles/index.styl

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
:root
2+
--color-link #E6900A
3+
--color-primary #E6900A

0 commit comments

Comments
 (0)