https://github.com/felixtellmann/tech-challenge
https://github.com/felixtellmann/tech-challenge
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/felixtellmann/tech-challenge
- Owner: FelixTellmann
- Created: 2023-09-21T17:30:39.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-09-22T07:03:00.000Z (over 2 years ago)
- Last Synced: 2025-02-01T20:46:12.628Z (over 1 year ago)
- Language: TypeScript
- Size: 50.8 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Tech Challenges
1. Checkout a new `branch` of the Repository with your name
2. At the end of the Challenge. Create a new `Pull Request` to the develop branch and assign a reviewer.
## Todo list App
(45min cap)
Your challenge is to build out this todo app and get it looking as close to the design as possible.
Spend at least 5-10 minutes planning out the UI `state` required for the challenge.
You can use any tools you like to help you complete the challenge. So if you've got something you'd like to practice, feel free to give it a go.
Your users should be able to:
- [ ] Add new todos to the list
- [ ] Mark todos as complete
- [ ] Delete todos from the list
- [ ] Filter by all/active/complete todos
- [ ] Clear all completed todos
- [ ] View the optimal layout for the app depending on their device's screen size
- [ ] See hover states for all interactive elements on the page
#### Next.js Getting Started
First, run the development server:
```bash
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
```
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
You can start editing the page by modifying `pages/index.tsx`. The page auto-updates as you edit the file.