-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsiteConfig.js
95 lines (95 loc) · 2.44 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
module.exports = {
siteTitle: 'Scott McCulloch',
siteDescription: 'Software Engineer • Cloud Technologist',
authorName: 'Scott McCulloch',
twitterUsername: 'sj_mcculloch',
authorAvatar: 'avatar.jpg', // file in content/images
defaultLang: 'en', // show flag if lang is not default. Leave empty to enable flags in post lists
authorDescription: `
For the past two decades, Scott McCulloch has worked with a variety of distributed computing technologies. He is currently focused on cloud-native applications.
`,
siteUrl: 'https://www.smcculloch.com/',
// Prefixes all links. For cases when deployed to maxpou.fr/gatsby-starter-morning-dew/
pathPrefix: '/gatsby-starter-morning-dew', // Note: it must *not* have a trailing slash.
siteCover: 'cover-dk.jpg', // file in content/images
statsCover: 'cover-peloton.jpg', // file in content/images
googleTagManagerId: 'GTM-KZLZXQ4',
background_color: '#ffffff',
theme_color: '#003366',
display: 'standalone',
icon: 'static/favicon.svg',
postsPerPage: 6,
headerTitle: 'Scott McCulloch',
headerLinksIcon: '', // (leave empty to disable: '')
headerLinks: [
{
label: 'About',
url: '/about',
},
{
label: 'Goals',
url: '/goals',
},
{
label: 'Reading',
url: '/reading',
},
{
label: 'Stats',
url: '/stats',
},
],
// Footer information (ex: Github, Netlify...)
websiteHost: {
name: 'Azure Static Web Apps',
url: 'https://azure.microsoft.com/services/app-service/static/',
},
footerLinks: [
{
sectionName: 'Explore',
links: [
{
label: 'About',
url: '/about',
},
{
label: 'Goals',
url: '/goals',
},
{
label: 'Reading',
url: '/reading',
},
{
label: 'Resume',
url: '/cv',
},
{
label: 'Stats',
url: '/stats',
},
],
},
{
sectionName: 'Follow the author',
links: [
{
label: 'GitHub',
url: 'https://github.com/sjmcculloch',
},
{
label: 'Website',
url: 'https://www.smcculloch.com',
},
{
label: 'Twitter',
url: 'https://twitter.com/sj_mcculloch',
},
{
label: 'Peloton',
url: 'https://members.onepeloton.com.au/members/sjmcculloch/overview',
},
],
},
],
}