diff --git a/.DS_Store b/.DS_Store
new file mode 100644
index 00000000..01625912
Binary files /dev/null and b/.DS_Store differ
diff --git a/README.md b/README.md
index 1613a3b0..68ff2979 100644
--- a/README.md
+++ b/README.md
@@ -1,13 +1,11 @@
# 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.
+GitHub tracker to follow our forked projects from Technigo
## 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?
+REally challanged week for me because of sickness in family. Have spend half the time I use to. Javascript felt good as I often think, good practice fetch functions and API. Have better control of passing around arguments. Styling and CSS is the challange for me. Would really like to have more time to play around with info from API
## 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://ajliins-githubtracker.netlify.app/
diff --git a/code/.DS_Store b/code/.DS_Store
new file mode 100644
index 00000000..f10092a7
Binary files /dev/null and b/code/.DS_Store differ
diff --git a/code/chart.js b/code/chart.js
index 92e85a30..2b123b0b 100644
--- a/code/chart.js
+++ b/code/chart.js
@@ -1,4 +1,33 @@
//DOM-selector for the canvas 👇
const ctx = document.getElementById('chart').getContext('2d')
-//"Draw" the chart here 👇
+//'Draw' the chart here 👇
+console.log('Pie chart is here')
+
+const drawChart = (x) => {
+
+ const data = {
+ labels: [
+ 'Done!',
+ 'Not done, yet!',
+
+ ],
+ datasets: [{
+ label: 'My First Dataset',
+ data: [x, 19-x],
+ backgroundColor: [
+ '#7B6079',
+ '#DE8971',
+
+ ],
+ hoverOffset: 4
+ }]
+ };
+
+ const config = {
+ type: 'doughnut',
+ data: data,
+ };
+
+ let myChart = new Chart(ctx,config);
+}
\ No newline at end of file
diff --git a/code/img/background.jpg b/code/img/background.jpg
new file mode 100644
index 00000000..476c4fb5
Binary files /dev/null and b/code/img/background.jpg differ
diff --git a/code/img/background.png b/code/img/background.png
new file mode 100644
index 00000000..d07c2120
Binary files /dev/null and b/code/img/background.png differ
diff --git a/code/img/background2.jpg b/code/img/background2.jpg
new file mode 100644
index 00000000..49d5334a
Binary files /dev/null and b/code/img/background2.jpg differ
diff --git a/code/img/background2.png b/code/img/background2.png
new file mode 100644
index 00000000..b0ebcede
Binary files /dev/null and b/code/img/background2.png differ
diff --git a/code/img/github.png b/code/img/github.png
new file mode 100644
index 00000000..15043568
Binary files /dev/null and b/code/img/github.png differ
diff --git a/code/index.html b/code/index.html
index 2fb5e0ae..77f9ad84 100644
--- a/code/index.html
+++ b/code/index.html
@@ -4,16 +4,32 @@
+
+
+
+
+
+