-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.ts
43 lines (42 loc) · 962 Bytes
/
config.ts
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
const path = require('path')
export const siteConfig = {
url: 'https://g.equk.co.uk',
title: "equk's blog",
subtitle: 'writings of a coder + sysadmin',
copyright: `© ${new Date().getFullYear()} equk.co.uk all rights reserved.`,
disqusShortname: 'equk',
postsPerPage: 9,
googleAnalyticsId: '',
themeColor: '#dd1144',
backgroundColor: '#ffffff',
logo: path.resolve('src/icon/icon.png'),
menu: [
{
label: 'Home',
path: '/',
},
{
label: 'About',
path: '/about',
},
{
label: 'Projects',
path: '/projects',
},
],
author: {
name: 'equilibriumuk',
photo: '/users/equilibriumuk.jpg',
bio: 'Web Developer & SRE',
contacts: {
email: '#',
telegram: '#',
twitter: 'equilibriumuk',
github: 'equk',
mastodon: '@equilibriumuk@hachyderm.io',
mastodon_url: 'hachyderm.io/@equilibriumuk',
rss: '#',
vkontakte: '#',
},
},
}