Skip to content

Commit

Permalink
style: added styles
Browse files Browse the repository at this point in the history
  • Loading branch information
ijayhub committed Apr 22, 2024
1 parent 5466dd8 commit 388f12e
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/views/List.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,16 @@ export function List({ data, listPath }) {
<div className="mt-10 flex justify-center">
{data.length < 1 ? (
<div className="welcome-prompt">
<h2>Welcome to Your List!</h2>
<p>
<h2 className="text-black">Welcome to Your List!</h2>
<p className="text-black">
Ready to start your list? Click on the button below to add your very
first item.
</p>
<button onClick={() => navigate('/manage-list')} type="button">
<button
onClick={() => navigate('/manage-list')}
type="button"
className="bg-blue-500 text-white font-bold py-2 px-4 rounded-md mt-4"
>
Add Item
</button>
</div>
Expand Down

0 comments on commit 388f12e

Please sign in to comment.