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

ToDoList - Etna and Linda - Week 10 #11

Open
wants to merge 23 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
40 changes: 9 additions & 31 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,37 +1,15 @@
<h1 align="center">
<a href="">
<img src="./src/assets/banner.svg" alt="Project Banner Image">
</a>
</h1>
# Getting Started with the Project

# Todo - useContext Project
## The Problem

Replace this readme with your own information about your project.
We started with a brainstorming session about how to structure the project and how we want the project to look since we didn't have any design to follow.

Start by briefly describing the assignment in a sentence or two. Keep it short and to the point.
Then we started coding and implementing the basic requirements and some basic styling.
We ended up also adding some strech goals. We switched up the styling quite a few times.

## Getting Started with the Project
If we would have more time we would implement a due date for the tasks and make use of the localstorage so taks would be stored if a user returns.

### Dependency Installation & Startup Development Server
## View it live

Once cloned, navigate to the project's root directory and this project uses npm (Node Package Manager) to manage its dependencies.

The command below is a combination of installing dependencies, opening up the project on VS Code and it will run a development server on your terminal.

```bash
npm i && code . && npm run dev
```

### The Problem

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.

## Instructions

<a href="instructions.md">
See instructions of this project
</a>
ToDo List by Etna and Linda:
https://linda-etna-project-todos.netlify.app/
11 changes: 9 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
<!doctype html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/list-icon.png" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Changa:wght@200..800&display=swap"
rel="stylesheet"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Todos App Context API</title>
<title>Things to do</title>
</head>
<body>
<div id="root"></div>
Expand Down
73 changes: 0 additions & 73 deletions instructions.md

This file was deleted.

Loading