website/siteConfig.js (29 lines of code) (raw):
/**
 * 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.
 */
const siteConfig = {
  title: 'Instant Articles Builder' /* title for your website */,
  tagline: 'Set-up Instant Articles without coding',
  url: 'https://facebook.github.io' /* your website url */,
  baseUrl: '/instant-articles-builder/',
  organizationName: 'facebook',
  projectName: 'instant-articles-builder',
  headerLinks: [
    {doc: 'get-started', label: 'Get Started'},
  ],
  /* path to images for header/footer */
  headerIcon: 'img/logo.png',
  footerIcon: 'img/logo.png',
  favicon: 'img/favicon.png',
  /* colors for website */
  colors: {
    primaryColor: '#3b5998',
    secondaryColor: '#cccccc',
  },
  // This copyright info is used in /core/Footer.js and blog rss/atom feeds.
  copyright:
    'Copyright © ' +
    new Date().getFullYear() +
    ' Facebook Inc',
  highlight: {
    // Highlight.js theme to use for syntax highlighting in code blocks
    theme: 'default',
  },
  scripts: ['https://buttons.github.io/buttons.js'],
  repoUrl: 'https://github.com/facebook/instant-articles-builder',
  facebookPixelId: '178314219485164',
};
module.exports = siteConfig;