diff --git a/.DS_Store b/.DS_Store
new file mode 100644
index 00000000..9d9e578f
Binary files /dev/null and b/.DS_Store differ
diff --git a/README.md b/README.md
index 1613a3b0..de84106d 100644
--- a/README.md
+++ b/README.md
@@ -1,13 +1,13 @@
# GitHub Tracker
-Replace this readme with your own information about your project.
-
-Start by briefly describing the assignment in a sentence or two. Keep it short and to the point.
+Project making a GitHub tracker that tracks my profile repositories data with the help of GitHub API's and presents it on a page.
## 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?
+Watched the online lectures and resources to get an idea how to approach the task at hand. Tried to make it look sort of similar to GitHub.
+Used a lot of fetch of APIs and tried to figure out which data that was relevant to use and how to add it on the page in a good way.
+If I had more time I would've wanted to grab more data and charts adding more content.
## 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://quizzical-fermi-01d0aa.netlify.app/
diff --git a/code/.DS_Store b/code/.DS_Store
new file mode 100644
index 00000000..2837c136
Binary files /dev/null and b/code/.DS_Store differ
diff --git a/code/chart.js b/code/chart.js
index 92e85a30..b96e95db 100644
--- a/code/chart.js
+++ b/code/chart.js
@@ -1,4 +1,27 @@
//DOM-selector for the canvas 👇
const ctx = document.getElementById('chart').getContext('2d')
-//"Draw" the chart here 👇
+//Doughnut chart for projects
+const drawChart = (amount) => {
+ const config = {
+ type: 'doughnut',
+ data: {
+ labels: [
+ 'Finished',
+ 'Not Finished',
+ ],
+ datasets: [{
+ label: 'My First Dataset',
+ data: [amount, 20-amount],
+ backgroundColor: [
+ 'rgb(87, 166, 255)',
+ 'rgb(128, 128, 128)',
+ ],
+ hoverOffset: 2,
+ borderWidth: 0,
+ }]
+ },
+ };
+ const myChart = new Chart (ctx, config)
+}
+
diff --git a/code/github-icon-black.svg b/code/github-icon-black.svg
new file mode 100644
index 00000000..bdf7b7a0
--- /dev/null
+++ b/code/github-icon-black.svg
@@ -0,0 +1,26 @@
+
+
diff --git a/code/index.html b/code/index.html
index 2fb5e0ae..85d8f0e1 100644
--- a/code/index.html
+++ b/code/index.html
@@ -5,15 +5,30 @@