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:
parent
ed47c134b0
commit
754796e992
@ -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>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user