diff --git a/docs/docs/intro.md b/docs/docs/intro.md index 911c06cb9..40852ed2d 100644 --- a/docs/docs/intro.md +++ b/docs/docs/intro.md @@ -1,4 +1,8 @@ -# Introduction +--- +slug: / +--- + +# Corso introduction ## Overview diff --git a/docs/docusaurus.config.js b/docs/docusaurus.config.js index 704e8ee5b..8a4d973b0 100644 --- a/docs/docusaurus.config.js +++ b/docs/docusaurus.config.js @@ -64,19 +64,13 @@ const config = { /** @type {import('@docusaurus/preset-classic').ThemeConfig} */ ({ navbar: { - title: '', + title: 'Docs', logo: { alt: 'Corso Logo', src: '/img/corso_horizontal_logo.svg', srcDark: 'img/corso_horizontal_logo_white.svg', }, items: [ - { - type: 'doc', - docId: 'intro', - position: 'left', - label: 'Docs', - }, { href: 'https://github.com/alcionai/corso', label: 'GitHub', @@ -92,15 +86,6 @@ const config = { height: 60, }, links: [ - { - title: 'Resources', - items: [ - { - label: 'Docs', - to: '/intro', - }, - ], - }, { title: 'Community', items: [ @@ -151,15 +136,6 @@ const config = { }, }, - image: 'img/cloudbackup.png', - - metadata : [ - {name: 'twitter:card', content: 'summary_large_image'}, - {name: 'twitter:site', content: '@corsobackup'}, - {name: 'twitter:title', content: 'Corso Documentation: Free, Secure, and Open-Source Backup for Microsoft 365'}, - {name: 'twitter:description', content: 'Documentation for Corso, an open-source tool, that protects Microsoft 365 data by securely and efficiently backing up all business-critical data to object storage.'}, - ], - prism: { theme: lightCodeTheme, darkTheme: darkCodeTheme, diff --git a/docs/src/components/HomepageFeatures/index.js b/docs/src/components/HomepageFeatures/index.js deleted file mode 100644 index 0ec565202..000000000 --- a/docs/src/components/HomepageFeatures/index.js +++ /dev/null @@ -1,61 +0,0 @@ -import React from 'react'; -import clsx from 'clsx'; -import styles from './styles.module.css'; - -const FeatureList = [ - { - title: 'Secure', - Svg: require('@site/static/img/security.svg').default, - description: ( - <> - Corso provides secure data backup that protects customers against accidental data loss, service provider downtime, and malicious threats including ransomware attacks. - > - ), - }, - { - title: 'Robust', - Svg: require('@site/static/img/data.svg').default, - description: ( - <> - Corso, purpose-built for M365 protection, provides easy-to-use comprehensive backup and restore workflows that reduce backup time, improve time-to-recovery, reduce admin overhead, and replace unreliable scripts or workarounds. - > - ), - }, - { - title: 'Low Cost', - Svg: require('@site/static/img/savings.svg').default, - description: ( - <> - Corso, a 100% open-source tool, provides a free alternative for cost-conscious teams. It further reduces storage costs by supporting flexible retention policies and efficiently compressing and deduplicating data before storing it in low-cost cloud object storage. - > - ), - }, -]; - -function Feature({Svg, title, description}) { - return ( -
{description}
-{siteConfig.tagline}
-