Moar website fixes (#1562)

## Description

- Fixes metadata that impacts preview cards
- Fix URLs that pointed to the old docs site
This commit is contained in:
Niraj Tolia 2022-11-19 21:58:04 -08:00 committed by GitHub
parent 7ecc94457d
commit e6bdceb248
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 10 additions and 13 deletions

View File

@ -76,7 +76,7 @@ costs, as well.
## Interested in Trying Corso?
Corso, currently in alpha, provides a CLI-based tool for backups of your M365 data.
[Follow the quickstart guide](https://docs.corsobackup.io/) to start protecting your business-critical M365 data in
[Follow the quickstart guide](../docs/quickstart) to start protecting your business-critical M365 data in
just a few minutes. Because Corso is currently in alpha, it should NOT be used in production.
Corso supports Microsoft 365 Exchange and OneDrive, with SharePoint and Teams support in active development. Coverage

View File

@ -6,7 +6,7 @@ const darkCodeTheme = require('prism-react-renderer/themes/dracula');
/** @type {import('@docusaurus/types').Config} */
const config = {
title: 'Corso Documentation',
title: 'Corso',
tagline: 'Free, Secure, and Open-Source Backup for Microsoft 365',
url: 'https://corsobackup.io',
baseUrl: process.env.CORSO_DOCS_BASEURL || '/',
@ -163,8 +163,8 @@ const config = {
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.'},
{name: 'twitter:title', content: 'Corso: Free, Secure, and Open-Source Backup for Microsoft 365'},
{name: 'twitter:description', content: 'Intro, Docs, and Blog 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: {

View File

@ -35,8 +35,7 @@ export default function FirstSection() {
<div className="mt-12 !z-10 mb-6">
<a
href="https://docs.corsobackup.io/setup/download"
target="_blank"
href="../docs/setup/download"
className="text-2xl !z-10 !no-underline hover:text-white py-2 px-6 font-bold btn bg-indigo-800 hover:bg-indigo-900 border-indigo-800 hover:border-indigo-900 text-white rounded-md"
>
Download Now

View File

@ -46,7 +46,7 @@ export default function FourthSection() {
minutes.
</p>
<a
href="https://docs.corsobackup.io/quickstart"
href="docs/quickstart"
className="!text-white !no-underline flex flex-row items-center !hover:text-white"
>
Get Started{" "}

View File

@ -357,8 +357,7 @@ export default function ThirdSection() {
<div className="mt-4">
<a
href="https://docs.corsobackup.io/quickstart"
target="_blank"
href="docs/quickstart"
className="btn btn-link !no-underline link-underline link-underline-black text-indigo-600 hover:text-indigo-600 after:bg-indigo-600 duration-500 ease-in-out"
>
Use The Quick Start For Your First Backup{" "}
@ -423,8 +422,7 @@ export default function ThirdSection() {
<div className="mt-4">
<a
href="https://docs.corsobackup.io/setup/repos"
target="_blank"
href="docs/setup/repos"
className="btn btn-link !no-underline link-underline link-underline-black text-indigo-600 hover:text-indigo-600 after:bg-indigo-600 duration-500 ease-in-out"
>
Read about our Object Storage support{" "}

View File

@ -5,8 +5,8 @@ import { MainComp } from "../components/parts/MainComp";
export default function Home() {
return (
<Layout
title="Home Page"
description="Documentation for Corso, a free, secure, and open-source backup tool for Microsoft 365"
title="Free, Secure, and Open-Source Backup for Microsoft 365"
description="Intro, docs, and blog for Corso, an open-source tool, that protects Microsoft 365 data by securely and efficiently backing up all business-critical data to object storage."
>
<MainComp />
</Layout>