Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

To-do: Nella #37

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"css.lint.unknownAtRules": "ignore"
}
19 changes: 15 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,21 @@

# Todo - useContext Project

Replace this readme with your own information about your project.
Todo App
This Todo app is built using React and Zustand for state management. It features a responsive design with a mobile-first approach, and provides users with an interactive and organized task list.

Key Technologies & Libraries:
React: Used for building the user interface with reusable components.
Zustand: A lightweight state management library for managing tasks globally.
Tailwind CSS: For styling and responsive design.
React Hooks: Utilized useState, useEffect, and custom hooks to manage state and side effects in the application.
Features:
Add, complete, and delete tasks.
Displays total, completed, and uncompleted tasks with dynamic updates.
Mobile-first design with responsive layout adjustments for tablets and laptops.
This app showcases my skills in state management with Zustand, React hooks, and responsive design principles.


Start by briefly describing the assignment in a sentence or two. Keep it short and to the point.

## Getting Started with the Project

Expand All @@ -27,8 +39,7 @@ npm i && code . && npm run dev
Describe how you approached to problem, and what tools and techniques you used to solve it. How did you plan? What technologies did you use? If you had more time, what would be next?

### View it live

Every project should be deployed somewhere. Be sure to include the link to the deployed project so that the viewer can click around and see what it's all about.
https://nella-todo.netlify.app/

## Instructions

Expand Down
41 changes: 41 additions & 0 deletions dist/assets/index-d51c492a.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/assets/index-f9dd7705.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions dist/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!doctype html>
<html lang="en">

<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Let's do it</title>
<script type="module" crossorigin src="/assets/index-d51c492a.js"></script>
<link rel="stylesheet" href="/assets/index-f9dd7705.css">
</head>

<body>
<div id="root"></div>

</body>

</html>
23 changes: 13 additions & 10 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Todos App Context API</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>

<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Let's do it</title>
</head>

<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>

</html>
Loading