diff --git a/README.md b/README.md
index 1613a3b0..0c4d63f7 100644
--- a/README.md
+++ b/README.md
@@ -1,13 +1,24 @@
-# GitHub Tracker
+# Project: GitHub-tracker
-Replace this readme with your own information about your project.
+This week, we want you to create a place to keep track of the GitHub repos that you're using here at Technigo.
-Start by briefly describing the assignment in a sentence or two. Keep it short and to the point.
+## How did I do it?
+I started the project by going through the material and videos. I really struggled mentally this week. So I decided early on that I will focus on blue level.
-## The problem
+What I learned:
+* This week it was a lot of JS and API requests. I have learned about fetch, API:S, finding info in an API and filtering. And how to add a gitHub token so you have limitless requests.👩💻
-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?
+* This week I had a problem to understand the connection between the code. I really had to narrow in all down to small small small pieces. BUT after Maks Wednesday live session I got more of a hang of it, the cheese sandwich comparison really made it more clear to me.
+
+## When I hit a dead end or a problem
+When a problem arose, I either googled, used stack-overflow or Chrome dev-tools. And I have talked a lot to my fellow Zebra colleagues. And I also had a 1:1 call support with Maks 🙌🏻
+
+My own reflection
+This week was really intense and I had a really big problem mentally. But in the end I solved everything and my page turned out alright 🙂
## View it live
+Here it is: https://rosanna-github-tracker.netlify.app/
-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.
+## Sources and inspiration
+https://developer.chrome.com/docs/devtools/javascript/
+https://stackoverflow.com/c/technigo/questions/2917
diff --git a/code/assets/github_tracker_icon.png b/code/assets/github_tracker_icon.png
new file mode 100644
index 00000000..58fdf191
Binary files /dev/null and b/code/assets/github_tracker_icon.png differ
diff --git a/code/chart.js b/code/chart.js
index 92e85a30..3c4a4809 100644
--- a/code/chart.js
+++ b/code/chart.js
@@ -2,3 +2,43 @@
const ctx = document.getElementById('chart').getContext('2d')
//"Draw" the chart here 👇
+
+
+
+const drawChart = (amount) => {
+ const config = {
+ type: 'doughnut',
+ data: {
+ labels: [
+ 'Finished projects',
+ 'Projects left',
+ ],
+ datasets: [{
+ label: 'My First Dataset',
+ data: [amount, 20 - amount],
+ backgroundColor: [
+ '#a07a99',
+ '#a7c0b8',
+ ],
+
+
+ hoverOffset: 4
+ }]
+ },
+ options: {
+ layout: {
+ padding: 25
+ },
+ plugins: {
+ legend: {
+ labels: {
+ font: {
+ size: 15
+ }
+ }
+ }
+ }
+ }
+ };
+ const myChart = new Chart(ctx, config);
+}
diff --git a/code/index.html b/code/index.html
index 2fb5e0ae..e004ccc1 100644
--- a/code/index.html
+++ b/code/index.html
@@ -1,21 +1,42 @@
+