We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5466dd8 commit 388f12eCopy full SHA for 388f12e
src/views/List.jsx
@@ -59,12 +59,16 @@ export function List({ data, listPath }) {
59
<div className="mt-10 flex justify-center">
60
{data.length < 1 ? (
61
<div className="welcome-prompt">
62
- <h2>Welcome to Your List!</h2>
63
- <p>
+ <h2 className="text-black">Welcome to Your List!</h2>
+ <p className="text-black">
64
Ready to start your list? Click on the button below to add your very
65
first item.
66
</p>
67
- <button onClick={() => navigate('/manage-list')} type="button">
+ <button
68
+ onClick={() => navigate('/manage-list')}
69
+ type="button"
70
+ className="bg-blue-500 text-white font-bold py-2 px-4 rounded-md mt-4"
71
+ >
72
Add Item
73
</button>
74
</div>
0 commit comments