-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpathMap.jsx
35 lines (34 loc) · 1.08 KB
/
pathMap.jsx
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
import Terasology from './Terasology/';
import DestinationSol from './DestinationSol';
import Contributor from './Terasology/Contributor';
export default {
'user-responses': [
{
name: 'Gotcha 👍 Let the Journey begin. 🌄',
child: {
'user-responses': [
{
name: '🔦 I wish to learn more about Terasology.',
child: Terasology,
},
{
name: 'I wish to learn more about in DestinationSol.',
child: DestinationSol,
},
{
name: '👋 I just wish to work on Game Stuff.',
child: Contributor,
},
],
'gooey-response': {
gooey: 'Which project you wish to explore? 🧐 ',
},
},
},
],
'gooey-response': {
gooey:
'👋 Hey there, I am Gooey! Welcome to The Terasology Foundation Tutorial Journey! I will be guiding you through this Journey to know Project better. You can respond to my questions by selecting an appropriate reply from the user section below 👇',
firstMessage: true,
},
};