docs.ts 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  1. import { DocsConfigType } from "types";
  2. export const docsConfig: DocsConfigType = [
  3. {
  4. title: "Getting started",
  5. items: [
  6. {
  7. title: "Introduction",
  8. href: "/docs/getting-started",
  9. },
  10. {
  11. title: "Browser Support",
  12. href: "/docs/getting-started/browser-support",
  13. },
  14. {
  15. title: "Customize Tabler",
  16. href: "/docs/getting-started/customize",
  17. },
  18. {
  19. title: "Download",
  20. href: "/docs/getting-started/download",
  21. },
  22. {
  23. title: "FAQ",
  24. href: "/docs/getting-started/faq",
  25. },
  26. ],
  27. },
  28. {
  29. title: "Base",
  30. items: [
  31. {
  32. title: "Colors",
  33. label: "new",
  34. href: "/docs/base/colors",
  35. },
  36. {
  37. title: "Typography",
  38. href: "/docs/base/typography",
  39. },
  40. ],
  41. },
  42. {
  43. title: "Layout",
  44. items: [
  45. {
  46. title: "Page layouts",
  47. label: "new",
  48. href: "/docs/layout/page-layouts",
  49. },
  50. {
  51. title: "Page headers",
  52. href: "/docs/layout/page-headers",
  53. },
  54. ],
  55. },
  56. {
  57. title: "Components",
  58. items: [
  59. {
  60. title: "Alerts",
  61. href: "/docs/components/alerts",
  62. },
  63. {
  64. title: "Autosize",
  65. href: "/docs/components/autosize",
  66. },
  67. {
  68. title: "Avatars",
  69. href: "/docs/components/avatars",
  70. },
  71. {
  72. title: "Badges",
  73. href: "/docs/components/badges",
  74. },
  75. {
  76. title: "Breadcrumb",
  77. href: "/docs/components/breadcrumb",
  78. },
  79. {
  80. title: "Buttons",
  81. href: "/docs/components/buttons",
  82. },
  83. {
  84. title: "Cards",
  85. href: "/docs/components/cards",
  86. },
  87. {
  88. title: "Carousel",
  89. href: "/docs/components/carousel",
  90. },
  91. {
  92. title: "Charts",
  93. href: "/docs/components/charts",
  94. },
  95. {
  96. title: "Datagrid",
  97. href: "/docs/components/datagrid",
  98. },
  99. {
  100. title: "Divider",
  101. href: "/docs/components/divider",
  102. },
  103. {
  104. title: "Dropdowns",
  105. href: "/docs/components/dropdowns",
  106. },
  107. {
  108. title: "Dropzone",
  109. href: "/docs/components/dropzone",
  110. },
  111. {
  112. title: "Empty",
  113. href: "/docs/components/empty",
  114. },
  115. {
  116. title: "Icons",
  117. href: "/docs/components/icons",
  118. },
  119. {
  120. title: "Inline Player",
  121. href: "/docs/components/inline-player",
  122. },
  123. {
  124. title: "Modals",
  125. href: "/docs/components/modals",
  126. },
  127. {
  128. title: "Placeholder",
  129. href: "/docs/components/placeholder",
  130. },
  131. {
  132. title: "Popover",
  133. href: "/docs/components/popover",
  134. },
  135. {
  136. title: "Progress",
  137. href: "/docs/components/progress",
  138. },
  139. {
  140. title: "Progress background",
  141. href: "/docs/components/progressbg",
  142. },
  143. {
  144. title: "Range slider",
  145. href: "/docs/components/range-slider",
  146. },
  147. {
  148. title: "Ribbons",
  149. href: "/docs/components/ribbons",
  150. },
  151. {
  152. title: "Spinners",
  153. href: "/docs/components/spinners",
  154. },
  155. {
  156. title: "Statuses",
  157. href: "/docs/components/statuses",
  158. },
  159. {
  160. title: "Steps",
  161. href: "/docs/components/steps",
  162. },
  163. {
  164. title: "Switch icon",
  165. href: "/docs/components/switch-icon",
  166. },
  167. {
  168. title: "Tables",
  169. href: "/docs/components/tables",
  170. },
  171. {
  172. title: "Tabs",
  173. href: "/docs/components/tabs",
  174. },
  175. {
  176. title: "Timelines",
  177. href: "/docs/components/timelines",
  178. },
  179. {
  180. title: "Tinymce",
  181. href: "/docs/components/tinymce",
  182. },
  183. {
  184. title: "Toasts",
  185. href: "/docs/components/toasts",
  186. },
  187. {
  188. title: "Tooltips",
  189. href: "/docs/components/tooltips",
  190. },
  191. {
  192. title: "Tracking",
  193. href: "/docs/components/tracking",
  194. },
  195. ],
  196. },
  197. {
  198. title: "Forms",
  199. items: [
  200. {
  201. title: "Base elements",
  202. href: "/docs/forms/form-elements",
  203. },
  204. {
  205. title: "Fieldset",
  206. href: "/docs/forms/form-fieldset",
  207. },
  208. {
  209. title: "Color check",
  210. href: "/docs/forms/form-color-check",
  211. },
  212. {
  213. title: "Image check",
  214. href: "/docs/forms/form-image-check",
  215. },
  216. {
  217. title: "Selectbox",
  218. href: "/docs/forms/form-selectboxes",
  219. },
  220. {
  221. title: "Validation",
  222. href: "/docs/forms/form-validation",
  223. },
  224. {
  225. title: "Input mask",
  226. href: "/docs/forms/form-input-mask",
  227. },
  228. {
  229. title: "Form helpers",
  230. href: "/docs/forms/form-helpers",
  231. },
  232. ],
  233. },
  234. {
  235. title: "Plugins",
  236. items: [
  237. {
  238. title: "Flags",
  239. href: "/docs/plugins/flags",
  240. },
  241. {
  242. title: "Payments",
  243. href: "/docs/plugins/payments",
  244. },
  245. ],
  246. },
  247. {
  248. title: "Utilities",
  249. items: [
  250. {
  251. title: "Borders",
  252. href: "/docs/utilities/borders",
  253. },
  254. {
  255. title: "Cursors",
  256. href: "/docs/utilities/cursors",
  257. },
  258. {
  259. title: "Interactions",
  260. href: "/docs/utilities/interactions",
  261. },
  262. ],
  263. },
  264. {
  265. title: "Tabler Icons",
  266. items: [
  267. {
  268. title: "Introduction",
  269. href: "/docs/icons",
  270. label: "new",
  271. },
  272. {
  273. title: "SVG version",
  274. href: "/docs/icons/svg",
  275. },
  276. {
  277. title: "React plugin",
  278. href: "/docs/icons/react",
  279. },
  280. {
  281. title: "Preact plugin",
  282. href: "/docs/icons/preact",
  283. },
  284. {
  285. title: "Vue plugin",
  286. href: "/docs/icons/vue",
  287. },
  288. {
  289. title: "SolidJS plugin",
  290. href: "/docs/icons/solidjs",
  291. },
  292. {
  293. title: "Svelte plugin",
  294. href: "/docs/icons/svelte",
  295. },
  296. {
  297. title: "Figma plugin",
  298. href: "/docs/icons/figma",
  299. },
  300. {
  301. title: "PNG version",
  302. href: "/docs/icons/png",
  303. },
  304. {
  305. title: "PDF version",
  306. href: "/docs/icons/pdf",
  307. },
  308. {
  309. title: "EPS version",
  310. href: "/docs/icons/eps",
  311. },
  312. {
  313. title: "Webfont version",
  314. href: "/docs/icons/webfont",
  315. },
  316. ],
  317. },
  318. ]