-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththeme.config.tsx
50 lines (48 loc) · 1.48 KB
/
theme.config.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import React from "react";
import { DocsThemeConfig } from "nextra-theme-docs";
import { QvikChatLogo } from "./components/qvikchat-logo";
import { SponsorNavBtn } from "./components/sponsor-nav-btn";
import { Footer } from "./components/footer";
const config: DocsThemeConfig = {
logo: <QvikChatLogo />,
logoLink: "/",
project: {
link: "https://github.com/oconva/qvikchat-docs",
},
chat: {
icon: <SponsorNavBtn variant="outline"></SponsorNavBtn>,
link: "https://github.com/sponsors/oconva",
},
docsRepositoryBase: "https://github.com/oconva/qvikchat-docs/tree/main",
footer: {
text: "QvikChat - A project by Oconva",
component: <Footer />,
},
sidebar: {
defaultMenuCollapseLevel: 1,
},
primaryHue: 17,
primarySaturation: 17,
useNextSeoProps: () => {
return {
titleTemplate: "%s - QvikChat",
};
},
head: (
<>
<meta name="description" content="QvikChat - A project by Oconva" />
<meta name="twitter:card" content="" />
<meta name="twitter:site" content="" />
<meta name="og:title" content="QvikChat" />
<meta name="og:description" content="QvikChat - A project by Oconva" />
<meta
name="apple-mobile-web-app-title"
content="QvikChat - A project by Oconva"
/>
<link rel="icon" href="icon.ico" />
<link rel="mask-icon" href="icon.ico" color="#000000" />
<link rel="apple-touch-icon" type="image/svg+xml" href="icon.ico" />
</>
),
};
export default config;