diff --git a/docs/docusaurus.config.js b/docs/docusaurus.config.js index a8561d1..b1f5181 100644 --- a/docs/docusaurus.config.js +++ b/docs/docusaurus.config.js @@ -6,20 +6,20 @@ const darkCodeTheme = require('prism-react-renderer/themes/dracula'); /** @type {import('@docusaurus/types').Config} */ const config = { - title: 'My Site', - tagline: 'Dinosaurs are cool', + title: 'CellGeometry', + tagline: 'Cell Shape Analysis', favicon: 'img/favicon.ico', // Set the production url of your site here - url: 'https://your-docusaurus-test-site.com', + url: 'https://bioshape-lab.github.io/cellgeometry/', // Set the // pathname under which your site is served // For GitHub pages deployment, it is often '//' - baseUrl: '/', + baseUrl: '/cellgeometry', // GitHub pages deployment config. // If you aren't using GitHub pages, you don't need these. - organizationName: 'facebook', // Usually your GitHub org/user name. - projectName: 'docusaurus', // Usually your repo name. + organizationName: 'UCSB BioShape Lab', // Usually your GitHub org/user name. + projectName: 'cellgeometry', // Usually your repo name. onBrokenLinks: 'throw', onBrokenMarkdownLinks: 'warn', @@ -42,14 +42,14 @@ const config = { // 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/', + 'https://github.com/bioshape-lab/cellgeometry/tree/main/packages/create-docusaurus/templates/shared/', }, blog: { showReadingTime: 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/', + 'https://github.com/bioshape-lab/cellgeometry/tree/main/packages/create-docusaurus/templates/shared/', }, theme: { customCss: require.resolve('./src/css/custom.css'), @@ -64,9 +64,9 @@ const config = { // Replace with your project's social card image: 'img/docusaurus-social-card.jpg', navbar: { - title: 'My Site', + title: 'CellGeometry', logo: { - alt: 'My Site Logo', + alt: 'CellGeometry Logo', src: 'img/logo.svg', }, items: [ @@ -78,7 +78,7 @@ const config = { }, {to: '/blog', label: 'Blog', position: 'left'}, { - href: 'https://github.com/facebook/docusaurus', + href: 'https://github.com/bioshape-lab/cellgeometry', label: 'GitHub', position: 'right', }, @@ -122,12 +122,12 @@ const config = { }, { label: 'GitHub', - href: 'https://github.com/facebook/docusaurus', + href: 'https://github.com/bioshape-lab/cellgeometry', }, ], }, ], - copyright: `Copyright © ${new Date().getFullYear()} My Project, Inc. Built with Docusaurus.`, + copyright: `Copyright © ${new Date().getFullYear()} CellGeometry, UCSB Electrical and Computer Engineering`, }, prism: { theme: lightCodeTheme,