- The purpose of the challenge is to implement the following UI pattern in an Angular web app: https://ui-patterns.com/patterns/Wizard
- You don't need to implement any kind of forms or validation, just static text as content
- You can configure the router as you want (not specified in the wireframes)
- No requirements on style, it can be styled as you wish
Press the 'Fork' button in the upper right corner, a copy of the repo will then be made and you will be redirected to it. You can verify that by looking in the upper left corner, you should see something like "YOUR_ACCOUNT_NAME/carrot-store-challenge".
You can press the green "Clone or download" button and copy the link, then use 'git clone LINK_HERE' command to get a local copy.
It's good practice to not work directly on the master branch, you can make a branch with your own name and work there or even make different branches for every feature you make if you feel brave.
You can see the local/remote branches that exists typing "git branch -a" in your terminal/bash or from the "Branch :" dropdown menu on the project's github page.
It's encouraged and good practice to have small commits (atomics), so it's easier to track/revert changes in the code when necessary.
When you are ready you can press the "New pull request" on your repo page and from there select:
- Base repository - "iQ-University/carrot-store-challenge"
- Base - The branch with your name
- Head repository - "YOUR_ACCOUNT_NAME/carrot-store-challenge"
- Compare - The branch you worked on