console/packages/web/docs/theme.config.mjs
Kamil Kisiela eacc68ba61
Add status page (#109)
* Add status page

* prettier
2022-05-26 13:17:09 +02:00

37 lines
870 B
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 { VscTerminal } from 'react-icons/vsc';
const projectLink = process.env.NEXT_PUBLIC_APP_LINK;
export default {
titleSuffix: ' Documentation - GraphQL Hive',
projectLink: projectLink,
projectLinkIcon: <VscTerminal />,
github: null,
docsRepositoryBase: null,
nextLinks: true,
prevLinks: true,
search: true,
unstable_flexsearch: true,
floatTOC: true,
customSearch: null,
darkMode: true,
footer: false,
logo: (
<>
<strong>GraphQL Hive</strong>
<span
style={{
marginLeft: '1rem',
}}
>
Documentation
</span>
</>
),
head: (
<>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="GraphQL Hive: documentation" />
<meta name="og:title" content="GraphQL Hive: documentation" />
</>
),
};