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.

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