-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.js
37 lines (36 loc) · 799 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
const config = {
googleAnalytics : {
code: 'G-ZSEG5MCV2Y'
},
colorTheme: {
light: {
color: '#d46159'
},
dark: {
color: '#282c35'
}
},
manifest: {
'name': 'From Tatooine',
'short_name': 'From Tatooine',
'start_url': '/',
'background_color': '#ffffff',
'theme_color': '#ffffff',
'display': 'standalone',
'icon': 'src/assets/icon-tatooine.png',
'theme_color_in_head': false
},
metadata: {
title: 'From Tatooine',
author: 'Stanley Gomes',
description: 'News from the two suns planet. 🌕 📚 📝',
siteUrl: 'https://from-tatooine.web.app',
social: {
twitter: '',
instagram: 'stanley.gomes',
linkedin: 'stanley-gomes',
github: 'stanleygomes'
}
}
}
module.exports = config