Your inspirational quote is:
©️ {year}
; } ``` ```js src/quotes.js export default [ "Don’t let yesterday take up too much of today.” — Will Rogers", "Ambition is putting a ladder against the sky.", "A joy that's shared is a joy made double.", ]; ``` ```css .fancy { font-family: 'Georgia'; } .title { color: #007AA3; text-decoration: underline; } .cursive { font-style: italic; } .small { font-size: 10px; } ```Your inspirational {inspiration.type} is:
{inspiration.type === 'quote' ?©️ {year}
; } ``` ```js src/inspirations.js export default [ {type: 'quote', value: "Don’t let yesterday take up too much of today.” — Will Rogers"}, {type: 'color', value: "#B73636"}, {type: 'quote', value: "Ambition is putting a ladder against the sky."}, {type: 'color', value: "#256266"}, {type: 'quote', value: "A joy that's shared is a joy made double."}, {type: 'color', value: "#F9F2B4"}, ]; ``` ```css .fancy { font-family: 'Georgia'; } .title { color: #007AA3; text-decoration: underline; } .cursive { font-style: italic; } .small { font-size: 10px; } .colorbox { height: 100px; width: 100px; margin: 8px; } ```