-
Notifications
You must be signed in to change notification settings - Fork 0
/
siteConfig.js
100 lines (99 loc) · 2.37 KB
/
siteConfig.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
module.exports = {
siteTitle: "Frank Pigeon's Blog",
siteDescription: `code, linux, music, life`,
authorName: 'Frank Pigeon Jr.',
twitterUsername: 'fpigeonjr',
authorAvatar: 'avatar.jpg', // file in content/images
multilangPosts: false, // enable/disable flags in post lists
authorDescription: `
Frank is a 👨💻web developer, U.S. Army veteran, 🎸bass player, father, husband, and founder of sacodersunited.
`,
siteUrl: 'https://frankpigeon.com/',
disqusSiteUrl: 'https://frankpigeon.com',
// Prefixes all links. For cases when deployed to maxpou.fr/gatsby-starter-morning-dew/
pathPrefix: '/', // Note: it must *not* have a trailing slash.
siteCover: 'bg-home4.jpg', // file in content/images
googleAnalyticsId: 'UA-53325305-1',
background_color: '#ffffff',
theme_color: '#222222',
display: 'standalone',
icon: 'content/images/gatsby-icon.png',
postsPerPage: 6,
disqusShortname: 'frankpigeon-com',
headerTitle: 'frankpigeon',
headerLinksIcon: '', // (leave empty to disable: '')
headerLinks: [
{
label: 'Blog',
url: '/',
},
{
label: 'About',
url: '/about',
},
{
label: 'Portfolio',
url: '/portfolio',
},
{
label: 'Resume',
url: '/resume',
},
{
label: 'Uses',
url: '/uses',
},
],
// Footer information (ex: Github, Netlify...)
websiteHost: {
name: 'Netlify',
url: 'https://www.netlify.com/',
},
footerLinks: [
{
sectionName: 'Explore',
links: [
{
label: 'Blog',
url: '/',
},
{
label: 'About',
url: '/about',
},
{
label: 'Portfolio',
url: '/portfolio',
},
{
label: 'Resume',
url: '/resume',
},
{
label: 'Uses',
url: '/uses',
},
],
},
{
sectionName: 'Follow the author',
links: [
{
label: 'Github',
url: 'https://github.com/fpigeonjr',
iconClassName: 'fa fa-github',
},
{
label: 'Twitter',
url: 'https://twitter.com/fpigeonjr',
iconClassName: 'fa fa-twitter',
},
{
label: 'LinkedIn',
url: 'https://www.linkedin.com/in/fpigeonjr/',
iconClassName: 'fa fa-linkedin-in',
},
],
},
],
}