Created
April 26, 2021 06:22
-
-
Save elifiner/021bda753e9e1bc7db0dc3ec09633444 to your computer and use it in GitHub Desktop.
quotes.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Quotes = [ | |
{ | |
"text":"You don't fail until you stop trying.", | |
"from":"Albert Einstein" | |
}, | |
{ | |
"text":"I failed my way to success.", | |
"from":"Thomas Edison" | |
}, | |
{ | |
"text":"Only those who dare to fail greatly can ever achieve greatly.", | |
"from":"John F. Kennedy" | |
}, | |
{ | |
"text":"It is hard to fail, but it is worse never to have tried to succeed.", | |
"from":"Theodore Roosevelt" | |
}, | |
{ | |
"text":"The future belongs to those who believe in the beauty of their dreams.", | |
"from":"Eleanor Roosevelt" | |
}, | |
{ | |
"text":"I avoid looking forward or backward, and try to keep looking upward.", | |
"from":"Charlotte Bronte" | |
}, | |
{ | |
"text":"Every artist was first an amateur.", | |
"from":"Ralph Waldo Emerson" | |
}, | |
{ | |
"text":"Our business in life is not to get ahead of others, but to get ahead of ourselves.", | |
"from":"E. Joseph Cossman" | |
}, | |
{ | |
"text":"Insist on yourself. Never imitate.", | |
"from":"Ralph Waldo Emerson" | |
}, | |
{ | |
"text":"Who looks outside, dreams. Who looks inside, awakes.", | |
"from":"Carl Jung" | |
}, | |
{ | |
"text":"The only journey is the one within.", | |
"from":"Rainer Maria Rilke" | |
}, | |
{ | |
"text":"Happiness is not a goal, but a by-product.", | |
"from":"Eleanor Roosevelt" | |
}, | |
{ | |
"text":"Happiness is not a state to arrive at, but a manner of traveling.", | |
"from":"Margaret Lee Runbeck" | |
}, | |
{ | |
"text":"Purpose is what gives life a meaning.", | |
"from":"C. H. Parkhurst" | |
}, | |
{ | |
"text":"Life can be pulled by goals just as surely as it can be pushed by drives.", | |
"from":"Viktor Frankl" | |
}, | |
{ | |
"text":"Success is the child of audacity.", | |
"from":"Benjamin Disraeli" | |
}, | |
{ | |
"text":"A goal is a dream with a deadline.", | |
"from":"Napoleon Hill" | |
}, | |
{ | |
"text":"The best way out is always through.", | |
"from":"Robert Frost" | |
}, | |
{ | |
"text":"You miss 100 percent of the shots you don't take.", | |
"from":"Wayne Gretzky" | |
}, | |
{ | |
"text":"Success is how high you bounce after you hit bottom.", | |
"from":"George Patton" | |
}, | |
{ | |
"text":"Fall seven times, stand up eight.", | |
"from":"Japanese Proverb" | |
}, | |
{ | |
"text":"What is not started will never get finished.", | |
"from":"Johann Wolfgang von Goethe" | |
}, | |
{ | |
"text":"Being realistic is the most commonly traveled road to mediocrity.", | |
"from":"Will Smith" | |
}, | |
{ | |
"text":"The road to success is always under construction.", | |
"from":"Arnold Palmer" | |
}, | |
{ | |
"text":"Whether you think you can or you can’t, you’re right.", | |
"from":"Henry Ford" | |
}, | |
{ | |
"text":"One day your life will flash before your eyes. Make sure it is worth watching.", | |
"from":"Mooie" | |
}, | |
{ | |
"text":"Do or do not. There is no try.", | |
"from":"Yoda" | |
}, | |
]; | |
export default Quotes; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment