-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquotes.tsx
More file actions
74 lines (74 loc) · 2.24 KB
/
quotes.tsx
File metadata and controls
74 lines (74 loc) · 2.24 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
export const quotes = [
{
"text": "Keep calm and carry on.",
"author": "Britain"
},
{
"text": "The only thing we have to fear is fear itself.",
"author": "Franklin Roosevelt"
},
{
"text": "Worry is like a rocking chair: It gives you something to do but never gets you anywhere.",
"author": "Erma Bombeck"
},
{
"text": "Nothing in life is to be feared, it is only to be understood. Now is the time to understand more, so that we may fear less.",
"author": "Marie Curie"
},
{
"text": "Don't worry 'bout a thing, cause every little thing's gonna be alright.",
"author": "Bob Marley"
},
{
"text": "Things could always be better, but things could always be worse.",
"author": "Marla Gibbs"
},
{
"text": "I like to think of life as an adventure, like a roller coaster. It helps with the ups and downs.",
"author": "Eddie Izzard"
},
{
"text": "Often when you think you're at the end of something, you're at the beginning of something else.",
"author": "Fred Rogers"
},
{
"text": "Better to be busy than to be busy worrying.",
"author": "Angela Lansbury"
},
{
"text": "Life isn't about waiting for the storm to pass. It's about learning how to dance in the rain.",
"author": "Vivian Greene"
},
{
"text": "When the world is running down, you make the best of what's still around.",
"author": "Sting"
},
{
"text": "That which does not kill us, makes us stronger.",
"author": "Friedrich Nietzsche"
},
{
"text": "Life will give you whatever experience is most helpful for the evolution of your consciousness.",
"author": "Eckhart Tolle"
},
{
"text": "You just gotta keep livin' man.",
"author": "Matthew McConaughey"
},
{
"text": "This too shall pass.",
"author": "Rumi"
},
{
"text": "Dawn comes after the darkness.",
"author": "Lisa Wingate"
},
{
"text": "Everything will be okay in the end. If it's not okay, it's not the end.",
"author": "John Lennon"
},
{
"text": "A life lived in fear is a life half lived.",
"author": "Baz Luhrmann"
}
]