-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathquotes.js
154 lines (153 loc) · 4.31 KB
/
quotes.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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
const quotes = [
{
"id": 1,
"quote": "The only limit to our realization of tomorrow is our doubts of today.",
"author": "Franklin D. Roosevelt"
},
{
"id": 2,
"quote": "The best way to predict the future is to invent it.",
"author": "Alan Kay"
},
{
"id": 3,
"quote": "Life is 10% what happens to us and 90% how we react to it.",
"author": "Charles R. Swindoll"
},
{
"id": 4,
"quote": "Your time is limited, so don't waste it living someone else's life.",
"author": "Steve Jobs"
},
{
"id": 5,
"quote": "The purpose of our lives is to be happy.",
"author": "Dalai Lama"
},
{
"id": 6,
"quote": "Get busy living or get busy dying.",
"author": "Stephen King"
},
{
"id": 7,
"quote": "You have within you right now, everything you need to deal with whatever the world can throw at you.",
"author": "Brian Tracy"
},
{
"id": 8,
"quote": "Believe you can and you're halfway there.",
"author": "Theodore Roosevelt"
},
{
"id": 9,
"quote": "The only way to do great work is to love what you do.",
"author": "Steve Jobs"
},
{
"id": 10,
"quote": "If you can dream it, you can do it.",
"author": "Walt Disney"
},
{
"id": 11,
"quote": "The future belongs to those who believe in the beauty of their dreams.",
"author": "Eleanor Roosevelt"
},
{
"id": 12,
"quote": "Do not wait to strike till the iron is hot; but make it hot by striking.",
"author": "William Butler Yeats"
},
{
"id": 13,
"quote": "Success is not the key to happiness. Happiness is the key to success.",
"author": "Albert Schweitzer"
},
{
"id": 14,
"quote": "You miss 100% of the shots you don’t take.",
"author": "Wayne Gretzky"
},
{
"id": 15,
"quote": "I attribute my success to this: I never gave or took any excuse.",
"author": "Florence Nightingale"
},
{
"id": 16,
"quote": "The best revenge is massive success.",
"author": "Frank Sinatra"
},
{
"id": 17,
"quote": "The harder I work, the luckier I get.",
"author": "Gary Player"
},
{
"id": 18,
"quote": "Don’t watch the clock; do what it does. Keep going.",
"author": "Sam Levenson"
},
{
"id": 19,
"quote": "The secret of success is to do the common thing uncommonly well.",
"author": "John D. Rockefeller Jr."
},
{
"id": 20,
"quote": "You must be the change you wish to see in the world.",
"author": "Mahatma Gandhi"
},
{
"id": 21,
"quote": "Act as if what you do makes a difference. It does.",
"author": "William James"
},
{
"id": 22,
"quote": "Keep your face always toward the sunshine—and shadows will fall behind you.",
"author": "Walt Whitman"
},
{
"id": 23,
"quote": "The only place where success comes before work is in the dictionary.",
"author": "Vidal Sassoon"
},
{
"id": 24,
"quote": "What lies behind us and what lies before us are tiny matters compared to what lies within us.",
"author": "Ralph Waldo Emerson"
},
{
"id": 25,
"quote": "To succeed in life, you need two things: ignorance and confidence.",
"author": "Mark Twain"
},
{
"id": 26,
"quote": "It always seems impossible until it's done.",
"author": "Nelson Mandela"
},
{
"id": 27,
"quote": "Success is not final, failure is not fatal: it is the courage to continue that counts.",
"author": "Winston Churchill"
},
{
"id": 28,
"quote": "What you do today can improve all your tomorrows.",
"author": "Ralph Marston"
},
{
"id": 29,
"quote": "The only way to achieve the impossible is to believe it is possible.",
"author": "Charles Kingsleigh"
},
{
"id": 30,
"quote": "The biggest risk is not taking any risk.",
"author": "Mark Zuckerberg"
}
];
module.exports = quotes;