-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquotes.js
More file actions
18 lines (18 loc) · 1.31 KB
/
Copy pathquotes.js
File metadata and controls
18 lines (18 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// quotes.js
const quotes = [
{ text: "The best way to get started is to quit talking and begin doing.", author: "Walt Disney" },
{ text: "Don't let yesterday take up too much of today.", author: "Will Rogers" },
{ text: "Success is not in what you have, but who you are.", author: "Bo Bennett" },
{ text: "Your time is limited, don't waste it living someone else's life.", author: "Steve Jobs" },
{ text: "It always seems impossible until it’s done.", author: "Nelson Mandela" },
{ text: "If you want to achieve greatness, stop asking for permission.", author: "Anonymous" },
{ text: "Dream bigger. Do bigger.", author: "Anonymous" },
{ text: "Don’t wait. The time will never be just right.", author: "Napoleon Hill" },
{ text: "Push yourself, because no one else is going to do it for you.", author: "Anonymous" },
{ text: "Great things never come from comfort zones.", author: "Roy T. Bennett" },
{ text: "What we think, we become.", author: "Buddha" },
{ text: "Hustle in silence and let success make the noise.", author: "Anonymous" },
{ text: "Don’t be afraid to give up the good to go for the great.", author: "John D. Rockefeller" },
{ text: "If you can dream it, you can do it.", author: "Walt Disney" },
{ text: "Start where you are. Use what you have. Do what you can.", author: "Arthur Ashe" }
];