-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.config.tsx
51 lines (49 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
51
import React from 'react';
import { DocsThemeConfig } from 'nextra-theme-docs';
import { SponsorNavBtn } from './components/sponsor-nav-btn';
import { Footer } from './components/footer';
const config: DocsThemeConfig = {
logo: (
<span className="text-2xl font-medium nx-text-primary-600">Intento</span>
),
logoLink: '/',
project: {
link: 'https://github.com/oconva/intento-docs',
},
chat: {
icon: <SponsorNavBtn variant="outline"></SponsorNavBtn>,
link: 'https://github.com/sponsors/oconva',
},
docsRepositoryBase: 'https://github.com/oconva/intento-docs/tree/main',
footer: {
text: 'Intento - A project by Oconva',
component: <Footer />,
},
sidebar: {
defaultMenuCollapseLevel: 1,
},
primaryHue: 179,
primarySaturation: 30,
useNextSeoProps: () => {
return {
titleTemplate: '%s - Intento',
};
},
head: (
<>
<meta name="description" content="Intento - A project by Oconva" />
<meta name="twitter:card" content="" />
<meta name="twitter:site" content="" />
<meta name="og:title" content="Intento" />
<meta name="og:description" content="Intento - A project by Oconva" />
<meta
name="apple-mobile-web-app-title"
content="Intento - 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;