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.

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