-
Notifications
You must be signed in to change notification settings - Fork 6
/
frontend.config.js
125 lines (121 loc) · 3.43 KB
/
frontend.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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
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-schedule': 'src/pages/page-schedule/index.js',
'page-session': 'src/pages/page-session/index.js',
'page-codelabs': 'src/pages/page-codelabs/index.js',
'page-codelab': 'src/pages/page-codelab/index.js',
'page-login': 'src/pages/page-login/index.js',
'page-logout': 'src/pages/page-logout/index.js',
'page-profile': 'src/pages/page-profile/index.js',
'page-connect-sponsor-member': 'src/pages/page-connect-sponsor-member/index.js',
'page-disconnect-sponsor-member': 'src/pages/page-disconnect-sponsor-member/index.js',
'page-sponsor-dashboard': 'src/pages/page-sponsor-dashboard/index.js',
'page-scan-participant': 'src/pages/page-scan-participant/index.js',
'page-participant-list': 'src/pages/page-participant-list/index.js',
'page-connect-ticket': 'src/pages/page-connect-ticket/index.js',
'page-disconnect-ticket': 'src/pages/page-disconnect-ticket/index.js',
'page-not-found': 'src/pages/page-not-found/index.js'
};
const routes = [
{
route: '/',
page: 'page-home'
},
{
route: '/speakers',
page: 'page-speakers'
},
{
route: '/schedule',
page: 'page-schedule'
},
{
route: '/login',
page: 'page-login'
},
{
route: '/logout',
page: 'page-logout'
},
{
route: '/profile',
page: 'page-profile'
},
{
route: '/connect-ticket',
page: 'page-connect-ticket'
},
{
route: '/disconnect-ticket',
page: 'page-disconnect-ticket'
},
{
route: '/speakers/:speakerId',
page: 'page-speaker'
},
{
route: '/session/:sessionId',
page: 'page-session'
},
{
route: '/connect-sponsor',
page: 'page-connect-sponsor-member'
},
{
route: '/disconnect-sponsor',
page: 'page-disconnect-sponsor-member'
},
{
route: '/sponsor-dashboard',
page: 'page-sponsor-dashboard'
},
{
route: '/scan-participant',
page: 'page-scan-participant'
},
{
route: '/participant-list',
page: 'page-participant-list'
},
{
route: '/codelabs',
page: 'page-codelabs'
},
{
route: '/codelabs/:codelabId/:pageId?',
page: 'page-codelab'
},
{
route: 'no-page',
page: 'page-not-found'
}
];
module.exports = { app, theme, fragments, routes };