diff --git a/README.md b/README.md
index 1613a3b0..cedda8b4 100644
--- a/README.md
+++ b/README.md
@@ -1,13 +1,6 @@
-# GitHub Tracker
+GitHub Tracker
-Replace this readme with your own information about your project.
+I created a tracker for my GitHub repositories that I have forked from Technigo using the GitHub API. I also showed how many projects I have done and how many I have left with the help of a pie chart built with chart.js.
-Start by briefly describing the assignment in a sentence or two. Keep it short and to the point.
-## 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.
+https://github-tracker-joanna.netlify.app/
diff --git a/code/chart.js b/code/chart.js
index 92e85a30..9f5d8e11 100644
--- a/code/chart.js
+++ b/code/chart.js
@@ -1,4 +1,28 @@
-//DOM-selector for the canvas 👇
-const ctx = document.getElementById('chart').getContext('2d')
+const showChart = (countRepos) => {
-//"Draw" the chart here 👇
+ const ctx = document.getElementById('chart').getContext('2d');
+
+ const labels = [
+ `Finished projects`,
+ `Projects left`
+ ];
+
+ const data = {
+ labels: labels,
+ datasets: [{
+ label: 'My Technigo projects',
+ backgroundColor: ['rgb(245, 217, 237)', 'rgb(217, 245, 239)'],
+ borderColor: 'rgb(66, 66, 66)',
+ data: [countRepos, 19-countRepos],
+ }]
+ };
+
+ const config = {
+ type: 'pie',
+ data: data,
+ options: {}
+ };
+
+ const myChart = new Chart(ctx, config);
+
+}
diff --git a/code/index.html b/code/index.html
index 2fb5e0ae..d8177f97 100644
--- a/code/index.html
+++ b/code/index.html
@@ -4,18 +4,44 @@
+
+
+
+