You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

154 lines
3.7 KiB

  1. module.exports = {
  2. theme: "cosmos",
  3. title: "Tendermint",
  4. // locales: {
  5. // "/": {
  6. // lang: "en-US"
  7. // },
  8. // "/ru/": {
  9. // lang: "ru"
  10. // }
  11. // },
  12. base: process.env.VUEPRESS_BASE,
  13. themeConfig: {
  14. docsRepo: "tendermint/tendermint",
  15. editLinks: true,
  16. docsDir: "docs",
  17. logo: "/logo.svg",
  18. label: "core",
  19. gutter: {
  20. title: "Help & Support",
  21. editLink: true,
  22. chat: {
  23. title: "Riot Chat",
  24. text: "Chat with Tendermint developers on Riot Chat.",
  25. url: "https://riot.im/app/#/room/#tendermint:matrix.org",
  26. bg: "#222"
  27. },
  28. forum: {
  29. title: "Tendermint Forum",
  30. text: "Join the Tendermint forum to learn more",
  31. url: "https://forum.cosmos.network/c/tendermint",
  32. bg: "#0B7E0B",
  33. logo: "tendermint"
  34. },
  35. github: {
  36. title: "Found an Issue?",
  37. text: "Help us improve this page by suggesting edits on GitHub."
  38. }
  39. },
  40. footer: {
  41. logo: "/logo-bw.svg",
  42. textLink: {
  43. text: "tendermint.com",
  44. url: "https://tendermint.com"
  45. },
  46. services: [
  47. {
  48. service: "medium",
  49. url: "https://medium.com/@tendermint"
  50. },
  51. {
  52. service: "twitter",
  53. url: "https://twitter.com/tendermint_team"
  54. },
  55. {
  56. service: "linkedin",
  57. url: "https://www.linkedin.com/company/tendermint/"
  58. },
  59. {
  60. service: "reddit",
  61. url: "https://reddit.com/r/cosmosnetwork"
  62. },
  63. {
  64. service: "telegram",
  65. url: "https://t.me/cosmosproject"
  66. },
  67. {
  68. service: "youtube",
  69. url: "https://www.youtube.com/c/CosmosProject"
  70. }
  71. ],
  72. smallprint:
  73. "The development of the Tendermint project is led primarily by Tendermint Inc., the for-profit entity which also maintains this website. Funding for this development comes primarily from the Interchain Foundation, a Swiss non-profit.",
  74. links: [
  75. {
  76. title: "Documentation",
  77. children: [
  78. {
  79. title: "Cosmos SDK",
  80. url: "https://cosmos.network/docs"
  81. },
  82. {
  83. title: "Cosmos Hub",
  84. url: "https://hub.cosmos.network/"
  85. }
  86. ]
  87. },
  88. {
  89. title: "Community",
  90. children: [
  91. {
  92. title: "Tendermint blog",
  93. url: "https://medium.com/@tendermint"
  94. },
  95. {
  96. title: "Forum",
  97. url: "https://forum.cosmos.network/c/tendermint"
  98. },
  99. {
  100. title: "Chat",
  101. url: "https://riot.im/app/#/room/#tendermint:matrix.org"
  102. }
  103. ]
  104. },
  105. {
  106. title: "Contributing",
  107. children: [
  108. {
  109. title: "Contributing to the docs",
  110. url: "https://github.com/tendermint/tendermint"
  111. },
  112. {
  113. title: "Source code on GitHub",
  114. url: "https://github.com/tendermint/tendermint"
  115. },
  116. {
  117. title: "Careers at Tendermint",
  118. url: "https://tendermint.com/careers"
  119. }
  120. ]
  121. }
  122. ]
  123. },
  124. sidebar: [
  125. {
  126. title: "Resources",
  127. children: [
  128. {
  129. title: "Developer Sessions",
  130. path: "/DEV_SESSIONS.html"
  131. },
  132. {
  133. title: "RPC",
  134. path: "/master/rpc/",
  135. static: true
  136. }
  137. ]
  138. }
  139. ]
  140. },
  141. markdown: {
  142. anchor: {
  143. permalinkSymbol: ""
  144. }
  145. },
  146. plugins: [
  147. [
  148. "@vuepress/google-analytics",
  149. {
  150. ga: "UA-51029217-11"
  151. }
  152. ]
  153. ],
  154. };