-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.config.tsx
57 lines (54 loc) · 1.8 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
import React from 'react';
import type { DocsThemeConfig } from 'nextra-theme-docs';
const config: DocsThemeConfig = {
docsRepositoryBase: 'https://github.com/tutods/my-configs/blob/master',
editLink: {
component: undefined,
},
feedback: {
content: undefined,
},
footer: {
text: (
<>
MIT <strong>{new Date().getFullYear()} © TutoDS</strong>. Created using
<a className="underline" href="https://nextra.site/" rel="noreferrer" target="_blank">
Nextra
</a>
.
</>
),
},
head: (
<>
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<meta content="en" httpEquiv="Content-Language" />
<meta content="TudoDS Configs. for Fish, ZSH and others" name="description" />
<meta content="TudoDS Configs. for Fish, ZSH and others" name="og:description" />
<meta content="summary_large_image" name="twitter:card" />
<meta content="https://my-configs.vercel.app/og.png" name="twitter:image" />
<meta content="my-configs.vercel.app" name="twitter:site:domain" />
<meta content="https://my-configs.vercel.app" name="twitter:url" />
<meta content="TutoDS | My Configs" name="og:title" />
<meta content="https://my-configs.vercel.app/og.png" name="og:image" />
<meta content="TutoDS | My Configs" name="apple-mobile-web-app-title" />
</>
),
logo: (
<>
<span className="mr-2 font-extrabold">TutoDS</span>
<span className="hidden font-normal text-gray-600 dark:text-gray-500 md:inline">
My Configurations for Fish, ZSH and more..
</span>
</>
),
project: {
link: 'https://github.com/tutods/my-configs',
},
useNextSeoProps() {
return {
titleTemplate: '%s | TutoDS Configs',
};
},
};
export default config;