-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.js
61 lines (54 loc) · 1.71 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
const title = 'Rent My Tent';
const subtitle = 'No tent left behind!';
const imageSm = 'src/images/favicon/android-chrome-192x192.png';
const imageLg = 'src/images/favicon/android-chrome-256x256.png';
const stageUrl = 'https://rent-my-tent.netlify.com'; // No trailing slash
const prodUrl = 'https://rent-my-tent.org'; // No trailing slash
const currentUrl = prodUrl;
const site = {
title : title,
titleTemplate : `%s · ${title}`,
desc : 'Rent Tents on the Ethereum Blockchain!',
author : 'Rent-My-Tent-Team',
twitterUsername : '@RentMyTent',
url : currentUrl,
logoUrl : imageSm,
image : imageSm,
};
const manifest = {
name : title,
shortName : subtitle, // max 12 characters
startUrl : currentUrl,
backgroundColor : '#343434',
themeColor : '#EC407A',
display : 'standalone',
icon : imageLg, // This path is relative to the root of the site.
};
module.exports = {
site,
manifest,
pathPrefix: '/',
// social
socialLinks: [
{
icon: 'fa-github',
name: 'Github',
url: 'https://github.com/robsecord/RentMyTentEth',
},
// {
// icon: 'fa-twitter',
// name: 'Twitter',
// url: 'https://twitter.com/[__your_social_link__]',
// },
// {
// icon: 'fa-facebook',
// name: 'Facebook',
// url: 'https://facebook.com/[__your_social_link__]',
// },
// {
// icon: 'fa-envelope-o',
// name: 'Email',
// url: 'mailto:[__your_email_address__]',
// },
],
};