-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathseed.js
135 lines (135 loc) · 2.61 KB
/
seed.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
126
127
128
129
130
131
132
133
134
135
module.exports = [
{
blockName: 'silence',
description: 'Be quiet in your mind and block out the chatter through meditation, prayer or focused breathing',
activities: [
{
name: 'Wake up',
startTime: '07:00',
endTime: '07:05',
checked: true,
},
{
name: 'Drink a glass of water',
startTime: '07:05',
endTime: '07:05',
checked: false,
},
{
name: 'Meditation',
startTime: '07:05',
endTime: '07:15',
checked: false,
},
{
name: 'Deep breathing',
startTime: '07:15',
endTime: '07:20',
checked: false,
},
],
},
{
blockName: 'affirmations',
description: 'Tell yourself encouraging words to achieve goals, overcome fears and feel happy',
activities: [
{
name: 'Affirmations for health',
startTime: '07:20',
endTime: '07:25',
checked: false,
},
{
name: 'Affirmations for abundance',
startTime: '07:25',
endTime: '07:30',
checked: false,
},
{
name: 'Other affirmations',
startTime: '07:30',
endTime: '07:35',
checked: false,
},
],
},
{
blockName: 'visualisation',
description:
'Imagine yourself doing each thing you need to do for the day and imagine what it feels like to succeed',
activities: [
{
name: 'Big dreams',
startTime: '07:35',
endTime: '07:37',
checked: false,
},
{
name: 'Big goals',
startTime: '07:37',
endTime: '07:40',
checked: false,
},
{
name: 'What I need to do',
startTime: '07:40',
endTime: '07:43',
checked: false,
},
{
name: 'What I need to be',
startTime: '07:43',
endTime: '07:45',
checked: false,
},
],
},
{
blockName: 'exercises',
description: 'Go for a walk or a jog. Getting moving allows blood and oxygen to flow to the brain',
activities: [
{
name: 'Walk',
startTime: '07:45',
endTime: '08:10',
checked: false,
},
{
name: 'Take a shower',
startTime: '08:12',
endTime: '08:30',
checked: false,
},
],
},
{
blockName: 'reading',
description: 'Fill your brain with positive thoughts and ideas to improve yourself',
activities: [
{
name: 'Read from a book for personal development',
startTime: '08:30',
endTime: '08:40',
checked: false,
},
{
name: 'Read a novel',
startTime: '08:40',
endTime: '08:50',
checked: false,
},
],
},
{
blockName: 'scribling',
description: "Write a journal to process your thoughts and reflect on waht you've achieved",
activities: [
{
name: 'Journal',
startTime: '08:50',
endTime: '09:00',
checked: false,
},
],
},
];