Add structured data for the Corso website (#3573)

Adds a website name for Google to pick up.

---

#### Does this PR need a docs update or release note?

- [x]  No

#### Type of change

- [x] 🗺️ Documentation
This commit is contained in:
Niraj Tolia 2023-06-06 20:00:03 -07:00 committed by GitHub
parent ed47c134b0
commit 754796e992
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,6 @@
import React, { useEffect } from "react";
import Layout from "@theme/Layout";
import Head from "@docusaurus/Head"
import { MainComp } from "@site/src/components/parts/MainComp";
import { useColorMode } from "@docusaurus/theme-common";
@ -24,8 +25,17 @@ export default function Home() {
return (
<Layout
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."
>
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.">
<Head>
<script type="application/ld+json">{`
{
"@context" : "https://schema.org",
"@type" : "WebSite",
"name" : "Corso",
"url" : "https://corsobackup.io/"
}
`}</script>
</Head>
<ThemeColor />
<MainComp />
</Layout>