diff --git a/README.md b/README.md index 1ae0dd5..387dcf6 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ This command starts a local development server and opens up a browser window. Mo ## Build ```bash -npm build +npm run build ``` This command generates static content into the `build` directory and can be served using any static contents hosting service. \ No newline at end of file diff --git a/docs/07-references.md b/docs/07-references.md index d4f9abb..6c02583 100644 --- a/docs/07-references.md +++ b/docs/07-references.md @@ -158,7 +158,7 @@ Cross-studio projects demand tight coordination, aligned pipelines, and early QA ![gow](./img/gow.png) -**🏆 Studio:** Santa Monica Studio +**🏆 Studio:** Santa Monica Studio\ **🎨 Topic:** Cross-departmental cohesion and long-term planning **📝 Summary:** @@ -180,7 +180,7 @@ A strong unifying vision and proactive collaboration between disciplines allow f ![sandfall](./img/sandfall.png) -**🎮 Studio:** Sandfall Interactive +**🎮 Studio:** Sandfall Interactive\ **👥 Topic:** Team-first approach to pre-production and creative alignment **📝 Summary:** diff --git a/docs/img/2042.png b/docs/img/2042.png index 1cd99f2..726d385 100644 Binary files a/docs/img/2042.png and b/docs/img/2042.png differ diff --git a/docs/img/andromeda.png b/docs/img/andromeda.png index ffa7e52..1c56ced 100644 Binary files a/docs/img/andromeda.png and b/docs/img/andromeda.png differ diff --git a/docs/img/destiny.png b/docs/img/destiny.png index 94dcd82..3788c93 100644 Binary files a/docs/img/destiny.png and b/docs/img/destiny.png differ diff --git a/docs/img/dirtybomb.png b/docs/img/dirtybomb.png index 64ed921..53b8882 100644 Binary files a/docs/img/dirtybomb.png and b/docs/img/dirtybomb.png differ diff --git a/docusaurus.config.ts b/docusaurus.config.ts index c46c302..f66a2bd 100644 --- a/docusaurus.config.ts +++ b/docusaurus.config.ts @@ -42,27 +42,8 @@ const config: Config = { { docs: { sidebarPath: './sidebars.ts', - // Please change this to your repo. - // Remove this to remove the "edit this page" links. - editUrl: - 'https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/', routeBasePath: '/', // Set to '/' to serve docs at the root URL }, - blog: { - showReadingTime: true, - feedOptions: { - type: ['rss', 'atom'], - xslt: true, - }, - // Please change this to your repo. - // Remove this to remove the "edit this page" links. - editUrl: - 'https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/', - // Useful options to enforce blogging best practices - onInlineTags: 'warn', - onInlineAuthors: 'warn', - onUntruncatedBlogPosts: 'warn', - }, theme: { customCss: './src/css/custom.css', }, @@ -80,51 +61,6 @@ const config: Config = { src: 'img/mercury-logo.png', } }, - footer: { - style: 'dark', - links: [ - { - title: 'Docs', - items: [ - { - label: 'Tutorial', - to: '/docs/intro', - }, - ], - }, - { - title: 'Community', - items: [ - { - label: 'Stack Overflow', - href: 'https://stackoverflow.com/questions/tagged/docusaurus', - }, - { - label: 'Discord', - href: 'https://discordapp.com/invite/docusaurus', - }, - { - label: 'X', - href: 'https://x.com/docusaurus', - }, - ], - }, - { - title: 'More', - items: [ - { - label: 'Blog', - to: '/blog', - }, - { - label: 'GitHub', - href: 'https://github.com/facebook/docusaurus', - }, - ], - }, - ], - copyright: `Copyright © ${new Date().getFullYear()} My Project, Inc. Built with Docusaurus.`, - }, prism: { theme: prismThemes.github, darkTheme: prismThemes.dracula, diff --git a/src/pages/index-may.tsx b/src/pages/index-may.tsx deleted file mode 100644 index 2e006d1..0000000 --- a/src/pages/index-may.tsx +++ /dev/null @@ -1,44 +0,0 @@ -import type {ReactNode} from 'react'; -import clsx from 'clsx'; -import Link from '@docusaurus/Link'; -import useDocusaurusContext from '@docusaurus/useDocusaurusContext'; -import Layout from '@theme/Layout'; -import HomepageFeatures from '@site/src/components/HomepageFeatures'; -import Heading from '@theme/Heading'; - -import styles from './index.module.css'; - -function HomepageHeader() { - const {siteConfig} = useDocusaurusContext(); - return ( -
-
- - {siteConfig.title} - -

{siteConfig.tagline}

-
- - Docusaurus Tutorial - 5min ⏱️ - -
-
-
- ); -} - -export default function Home(): ReactNode { - const {siteConfig} = useDocusaurusContext(); - return ( - - -
- -
-
- ); -}