-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.config.tsx
71 lines (65 loc) · 1.92 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
import React from 'react';
import { DocsThemeConfig } from 'nextra-theme-docs';
import Link from 'next/link';
const config: DocsThemeConfig = {
logo: <h1>docs.codedevils.org</h1>,
head: (
<>
<meta name='viewport' content='width=device-width, initial-scale=1.0' />
<title>CodeDevils' Documentation</title>
<meta
name='description'
content='CodeDevils documentation website for all of our projects and resources.'
/>
<meta
name='keywords'
content='CodeDevils, ASU, Arizona State University, CodeDevils documentation, CodeDevils projects'
/>
<meta name='robots' content='index, follow' />
<meta
name='author'
content="CodeDevils' Website Team, CodeDevils' Project leads and developers"
/>
{/* opengraph */}
<meta property='og:title' content="Codedevils' Documenation" />
<meta
property='og:description'
content='CodeDevils documentation website for all of our projects and resources.'
/>
<meta property='og:image' content='https://www.codedevils.org/og.png' />
<link
rel='icon'
type='image/png'
sizes='32x32'
href='https://www.codedevils.org/favicon.webp'
/>
</>
),
project: {
// CodeDevils github organization page
link: 'https://github.com/ASU-CodeDevils',
},
chat: {
// CodeDevils Discord server
link: 'https://discord.gg/eevXKjVmm2',
},
docsRepositoryBase:
'https://github.com/ASU-CodeDevils/docs.codedevils.org/tree/dev/',
footer: {
// component: <Footer />,
text: (
<span>
MIT {new Date().getFullYear()} ©{' '}
<Link
href='https://codedevils.org'
target='_blank'
className='hover:underline hover:text-maroon transition-colors duration-200 ease-in-out'
>
CodeDevils
</Link>
.
</span>
),
},
};
export default config;