-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
42 lines (41 loc) · 806 Bytes
/
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
42
'use strict';
module.exports = {
url: 'https://www.sunnymistry.dev',
pathPrefix: '/',
title: 'Sunny Mistry',
subtitle: 'Software Engineer',
copyright: '© All rights reserved.',
disqusShortname: '',
postsPerPage: 50,
tilPerPage: 50,
googleAnalyticsId: 'UA-155012646-1',
menu: [
{
label: 'Articles',
path: '/',
},
{
label: 'About',
path: '/pages/about'
},
{
label: 'Today I Learned',
path: '/til'
},
{
label: 'Books',
path: '/books'
}
],
author: {
name: 'Sunny Mistry',
photo: '/profile-photo.jpg',
bio: 'Software Engineer | Web Dev',
contacts: {
email: 'sunny.v.mistry@gmail.com',
github: 'sunnymis',
linkedin: 'sunnymistry',
instagram: 'sunnmist'
}
}
};