-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy paththeme.config.tsx
64 lines (63 loc) · 1.83 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
import { defineTheme, directory, group, link, social } from '@neato/guider/theme';
import { Logo } from './components/Logo';
import { NextSeo } from 'next-seo';
import faviconUrl from './public/logo-img.png';
export default defineTheme({
github: 'sussy-code/skool-project',
navigation: [
link('My other project', 'https://sudo-flix.lol', {
style: 'star',
newTab: true,
}),
],
contentFooter: {
text: 'Made with :3 (sillyness)',
editRepositoryBase: 'https://github.com/sussy-code/docs/blob/master',
socials: [
social.github('https://github.com/sussy-code'),
]
},
meta: (pageMeta) => (
<NextSeo {...{
title: `${pageMeta.title ?? 'Chill Pill'}`,
description: pageMeta.description ?? 'Chill Pill is a dog sedative to calm your best friend',
additionalLinkTags: [
{
href: faviconUrl.src,
rel: 'icon',
type: 'image/x-icon',
}
]
}} />
),
settings: {
logo: () => <Logo />,
backgroundPattern: 'flare',
toc: false,
contentFooter: false,
colors: {
'primary': '#A476D9',
'primaryLighter': '#C4ADDE',
'primaryDarker': '#6E23C3',
'background': '#0C0B13',
'backgroundLighter': '#1A1726',
'backgroundLightest': '#282438',
'backgroundDarker': '#000000',
'line': '#37334C',
'text': '#8C899A',
'textLighter': '#A6A4AE',
'textHighlight': '#FFF'
},
},
directories: [
directory('main', {
sidebar: [
link('Introduction', '/intro', { icon: 'mdi:handshake' }),
link('Ingredients', '/ingredients', { icon: 'mdi:chef-hat' }),
link('Pricing', '/pricing', { icon: 'mdi:cash-multiple' }),
link('Contact us', '/contact', { icon: 'mdi:contact'}),
link('About us', '/about', { icon: 'mdi:about' }),
]
})
],
});