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.

141 lines
3.4 KiB

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