Files
docs/theme.config.jsx
2023-08-21 19:55:08 +02:00

58 lines
1.7 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import Logo from "./components/Logo/Logo";
export default {
logo: <Logo />,
project: {
link: "https://github.com/learnhouse/learnhouse",
},
docsRepositoryBase: "https://github.com/learnhouse/docs/tree/main",
chat: {
link: "https://discord.gg/CMyZjjYZ6x",
},
head: (
<>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:title" content="LearnHouse Docs" />
<meta property="og:description" content="The next-gen open source learning software" />
<link rel="apple-touch-icon" sizes="180x180" href="/favicons/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicons/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicons/favicon-16x16.png" />
<link rel="manifest" href="/favicons/site.webmanifest" />
</>
),
footer: {
text: <span>{new Date().getFullYear()} © LearnHouse.</span>,
},
sidebar: {
defaultMenuCollapseLevel: 2,
},
useNextSeoProps() {
return {
titleTemplate: "%s LearnHouse Docs",
canonical: "https://docs.learnhouse.app",
description: "The next-gen open source learning software",
openGraph: {
type: "website",
locale: "en_US",
url: "https://docs.learnhouse.app",
site_name: "LearnHouse Docs",
images: [
{
url: "https://docs.learnhouse.app/img/og.png",
alt: "LearnHouse Docs",
width: 1512,
height: 687,
},
],
},
twitter: {
handle: "@getlearnhouse",
site: "@getlearnhouse",
cardType: "summary_large_image",
},
};
},
};