-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy paththeme.config.js
41 lines (41 loc) · 1.38 KB
/
theme.config.js
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
export default {
project: {
link: 'https://github.com/shakurocom/figma-extractor',
},
docsRepositoryBase: 'https://github.com/shakurocom/figma-extractor/blob/master/docs',
useNextSeoProps() {
return {
titleTemplate: '%s – Figma extractor',
};
},
navigation: {
next: true,
prev: true,
},
darkMode: true,
footer: {
text: <>MIT {new Date().getFullYear()} © Shakuro.</>,
},
logo: (
<>
<span className="nx-hidden nx-mr-2 nx-font-extrabold md:nx-inline">Figma extractor</span>
<span className="nx-hidden nx-text-gray-600 nx-font-normal md:nx-inline">
Extract style system from figma
</span>
</>
),
head: (
<>
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<meta content="Figma extractor" name="description" />
<meta content="Figma extractor" name="og:title" />
<link href="/apple-touch-icon.png" rel="apple-touch-icon" sizes="180x180" />
<link href="/favicon-32x32.png" rel="icon" sizes="32x32" type="image/png" />
<link href="/favicon-16x16.png" rel="icon" sizes="16x16" type="image/png" />
<link href="/site.webmanifest" rel="manifest" />
<link color="#5bbad5" href="/safari-pinned-tab.svg" rel="mask-icon" />
<meta content="#da532c" name="msapplication-TileColor" />
<meta content="#ffffff" name="theme-color" />
</>
),
};