siteConfig.js 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. /**
  2. * Copyright (c) 2017-present, Facebook, Inc.
  3. * All rights reserved.
  4. *
  5. * This source code is licensed under the MIT license found in the
  6. * LICENSE file in the root directory of this source tree.
  7. */
  8. /* List of projects/orgs using your project for the users page */
  9. const authors = [
  10. {
  11. caption: "Piotr Bojanowski",
  12. image: "/img/authors/piotr_bojanowski.jpg",
  13. infoLink: "https://research.fb.com/people/bojanowski-piotr/",
  14. pinned: true
  15. },
  16. {
  17. caption: "Edouard Grave",
  18. image: "/img/authors/edouard_grave.jpeg",
  19. infoLink: "https://research.fb.com/people/grave-edouard/",
  20. pinned: true
  21. },
  22. {
  23. caption: "Armand Joulin",
  24. image: "/img/authors/armand_joulin.jpg",
  25. infoLink: "https://research.fb.com/people/joulin-armand/",
  26. pinned: true
  27. },
  28. {
  29. caption: "Tomas Mikolov",
  30. image: "/img/authors/tomas_mikolov.jpg",
  31. infoLink: "https://research.fb.com/people/mikolov-tomas/",
  32. pinned: true
  33. },
  34. {
  35. caption: "Christian Puhrsch",
  36. image: "/img/authors/christian_puhrsch.png",
  37. infoLink: "https://research.fb.com/people/puhrsch-christian/",
  38. pinned: true
  39. }
  40. ];
  41. const users = [
  42. {
  43. caption: '"It actually works" - Piotr Bojanowski',
  44. image: "/img/authors/piotr_bojanowski.jpg",
  45. infoLink: "https://research.fb.com/people/bojanowski-piotr/",
  46. pinned: true
  47. },
  48. {
  49. caption: '"It\'s what the kids want" - Santa Claus',
  50. image: "/img/santa_claus.png",
  51. infoLink: "https://de.wikipedia.org/wiki/Weihnachtsmann",
  52. pinned: true
  53. }
  54. ];
  55. const siteConfig = {
  56. title: "fastText" /* title for your website */,
  57. url: "https://fasttext.cc" /* your site url */,
  58. baseUrl: "/" /* base url for your project */,
  59. repo: "facebookresearch/fastText" /* repo for your project */,
  60. cname: "fasttext.cc",
  61. users,
  62. /* base url for editing docs, usage example: editUrl + 'en/doc1.md' */
  63. /* editUrl: "https://github.com/facebookresearch/fastText/website/edit/master/docs/", */
  64. /* header links for links on this site */
  65. headerLinks: [
  66. { doc: "support", label: "Docs" },
  67. { doc: "english-vectors", label: "Download" },
  68. { blog: true, label: "Blog" },
  69. {
  70. href: "https://github.com/facebookresearch/fastText/",
  71. label: "GitHub",
  72. external: true
  73. }
  74. ],
  75. /* path to images for header/footer */
  76. headerIcon: "img/fasttext-icon-white-web.png",
  77. disableHeaderTitle: true,
  78. footerIcon: "img/fasttext-icon-white-web.png",
  79. favicon: "img/fasttext-icon-bg-web.png",
  80. mainImg: "img/fasttext-logo-color-web.png",
  81. /* colors for website */
  82. colors: {
  83. primaryColor: "rgb(0,85,129)",
  84. secondaryColor: "rgb(227,24,35)",
  85. prismColor:
  86. "rgba(155,155,155, 0.13)" /* primaryColor in rgba form, with 0.03 alpha */
  87. },
  88. separateCss: ["static/docs/en/html"],
  89. disableTitleTagline: true,
  90. projectName: "fastText",
  91. tagline:
  92. "Library for efficient text classification and representation learning",
  93. /* remove this to disable google analytics tracking */
  94. gaTrackingId: "UA-44373548-30",
  95. ogImage: "img/ogimage.png",
  96. useEnglishUrl: true
  97. };
  98. module.exports = siteConfig;