UNPKG

@kiwicom/smart-faq

Version:

Smart FAQ

145 lines (125 loc) 4.03 kB
/** * Copyright (c) 2017-present, Facebook, Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ // See https://docusaurus.io/docs/site-config for all the possible // site configuration options. // List of projects/orgs using your project for the users page. const members = [ { caption: 'Viktor Borszeki', description: 'Developer, BCN', image: '/img/members/borszeki.png', infoLink: 'https://skypicker.slack.com/team/UB8KX9LTB', }, { caption: 'Dániel Kántor', description: 'Developer, BCN', image: '/img/members/kantor.png', infoLink: 'https://skypicker.slack.com/team/UA89Z7CAU', }, { caption: 'Joan Albert', description: 'Developer, BCN', image: '/img/members/albert.png', infoLink: 'https://skypicker.slack.com/team/U8D7587V1', }, { caption: 'Martin Jancik', description: 'UX, BRQ', image: '/img/members/jancik.png', infoLink: 'https://skypicker.slack.com/team/U87MW13TK', }, { caption: 'David Germ', description: 'QA, BRQ', image: '/img/members/germ.png', infoLink: 'https://skypicker.slack.com/team/U0HLW9X52', }, { caption: 'Jaroslav Kubicek', description: 'Tech lead, PRG', image: '/img/members/kubicek.png', infoLink: 'https://skypicker.slack.com/team/U65JKKZDX', }, { caption: 'Martin Kučera', description: 'Project manager, PRG', image: '/img/members/kucera.png', infoLink: 'https://skypicker.slack.com/team/U3MAHTMB9', }, ]; const siteConfig = { title: 'SmartFAQ', // Title for your website. tagline: 'DOCs', customDocsPath: 'docs/docs', url: 'https://kiwi.wiki', baseUrl: '/frontend/smart-faq/', editUrl: 'https://gitlab.skypicker.com/frontend/smart-faq/edit/master/docs/docs/', // For github.io type URLs, you would set the url and baseUrl like: // url: 'https://facebook.github.io', // baseUrl: '/test-site/', // Used for publishing and more projectName: 'smartfaq-docs', organizationName: 'kiwi.com', // For top-level user or org sites, the organization is still the same. // e.g., for the https://JoelMarcey.github.io site, it would be set like... // organizationName: 'JoelMarcey' // For no header links in the top nav bar -> headerLinks: [], headerLinks: [ {doc: 'setup', label: 'Develop'}, {doc: 'link-to-faqs', label: 'Dev HOWTOs'}, {doc: 'guarantee-chat', label: 'Business'}, { blog: true, label: 'News' }, { search: true }, ], // If you have users set above, you add it here: users: members, /* path to images for header/footer */ headerIcon: 'img/blonde_woman.png', favicon: 'img/favicon.png', /* Colors for website */ colors: { primaryColor: '#2E8555', secondaryColor: '#205C3B', }, /* Custom fonts for website */ /* fonts: { myFont: [ "Times New Roman", "Serif" ], myOtherFont: [ "-apple-system", "system-ui" ] }, */ // This copyright info is used in /core/Footer.js and blog RSS/Atom feeds. copyright: `Copyright © ${new Date().getFullYear()} Kiwi.com`, highlight: { // Highlight.js theme to use for syntax highlighting in code blocks. theme: 'default', }, // Add custom scripts here that would be placed in <script> tags. scripts: ['https://buttons.github.io/buttons.js'], // On page navigation for the current documentation page. onPageNav: 'separate', // No .html extensions for paths. cleanUrl: true, // Open Graph and Twitter card images. ogImage: 'img/docusaurus.png', twitterImage: 'img/docusaurus.png', // Show documentation's last contributor's name. // enableUpdateBy: true, // Show documentation's last update time. // enableUpdateTime: true, // You may provide arbitrary config keys to be used as needed by your // template. For example, if you need your repo's URL... // repoUrl: 'https://github.com/facebook/test-site', }; module.exports = siteConfig;