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.

148 lines
3.7 KiB

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