Commit 2a2e8bf1 authored by Kristofer Selbekk's avatar Kristofer Selbekk Committed by Joe Haddad
Browse files

Set the project name and owner correctly (#5243)

This commit sets the page name to "Create React App", the tagline to
"Create React apps with no build configuration." and the copyright
owner to "Facebook"
parent e963dde9
Showing with 8 additions and 8 deletions
+8 -8
...@@ -21,16 +21,16 @@ const users = [ ...@@ -21,16 +21,16 @@ const users = [
]; ];
const siteConfig = { const siteConfig = {
title: 'Test Site', // Title for your website. title: 'Create React App', // Title for your website.
tagline: 'A website for testing', tagline: 'Create React apps with no build configuration.',
url: 'https://your-docusaurus-test-site.com', // Your website URL url: 'https://facebook.github.io', // Your website URL
baseUrl: '/', // Base URL for your project */ baseUrl: '/', // Base URL for your project */
// For github.io type URLs, you would set the url and baseUrl like: // For github.io type URLs, you would set the url and baseUrl like:
// url: 'https://facebook.github.io', // url: 'https://facebook.github.io',
// baseUrl: '/test-site/', // baseUrl: '/test-site/',
// Used for publishing and more // Used for publishing and more
projectName: 'test-site', projectName: 'create-react-app',
organizationName: 'facebook', organizationName: 'facebook',
// For top-level user or org sites, the organization is still the same. // 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... // e.g., for the https://JoelMarcey.github.io site, it would be set like...
...@@ -38,9 +38,9 @@ const siteConfig = { ...@@ -38,9 +38,9 @@ const siteConfig = {
// For no header links in the top nav bar -> headerLinks: [], // For no header links in the top nav bar -> headerLinks: [],
headerLinks: [ headerLinks: [
{doc: 'doc1', label: 'Docs'}, { doc: 'doc1', label: 'Docs' },
{doc: 'doc4', label: 'API'}, { doc: 'doc4', label: 'API' },
{page: 'help', label: 'Help'}, { page: 'help', label: 'Help' },
], ],
// If you have users set above, you add it here: // If you have users set above, you add it here:
...@@ -72,7 +72,7 @@ const siteConfig = { ...@@ -72,7 +72,7 @@ const siteConfig = {
*/ */
// This copyright info is used in /core/Footer.js and blog RSS/Atom feeds. // This copyright info is used in /core/Footer.js and blog RSS/Atom feeds.
copyright: `Copyright © ${new Date().getFullYear()} Your Name or Your Company Name`, copyright: `Copyright © ${new Date().getFullYear()} Facebook`,
highlight: { highlight: {
// Highlight.js theme to use for syntax highlighting in code blocks. // Highlight.js theme to use for syntax highlighting in code blocks.
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment