forked from gdgphilippines/devfest2018
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfrontend.config.js
More file actions
60 lines (56 loc) · 1.72 KB
/
frontend.config.js
File metadata and controls
60 lines (56 loc) · 1.72 KB
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
const app = {
title: 'GDG Philippines Devfest 2018',
shortName: 'GDGPh Devfest 2018', // 12 characters max
description: 'In celebration of GDG Philippines 11th Anniversary, we bring to you the Grandest Technology event of the year - GDG DevFest Philippines 2018! GDG DevFest Philippines brings together experts in Artificial Intelligence, Android, Web and Cloud technologies to Manila for sessions, workshops and showcases. In this conference, our goal is to equip you with new knowledge & skills that you can immediately apply or bring back to your companies.',
sentry: 'https://9b6a1538d7574158b7580a1e0a8baf98@sentry.io/1273930',
googleAnalytics: 'UA-78413383-2',
baseHref: '/',
startUrl: '/',
display: 'standalone',
orientation: 'any',
scope: '/',
twitter: '@gdgphilippines',
twitterCreator: '@tjmonsi',
image: 'https://devfest.gdgph.org/assets/images/banner/desktop.jpg'
};
const theme = {
themeColor: '#000',
backgroundColor: '#000',
favicon: '',
webApp: {
capable: 'yes',
statusBarStyle: 'black-translucent',
tapHighlight: 'no'
},
icons: []
};
const fragments = {
'page-home': 'src/pages/page-home/index.js',
'page-speakers': 'src/pages/page-speakers/index.js',
'page-speaker': 'src/pages/page-speaker/index.js',
'page-session': 'src/pages/page-session/index.js',
'page-not-found': 'src/pages/page-not-found/index.js'
};
const routes = [
{
route: '/',
page: 'page-home'
},
{
route: '/speakers',
page: 'page-speakers'
},
{
route: '/speakers/:speakerId',
page: 'page-speaker'
},
{
route: '/session/:sessionId',
page: 'page-session'
},
{
route: 'no-page',
page: 'page-not-found'
}
];
module.exports = { app, theme, fragments, routes };