diff --git a/README.md b/README.md
index 1613a3b0..de4fb098 100644
--- a/README.md
+++ b/README.md
@@ -1,13 +1,12 @@
-# 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 - Week 7
+The assignment this week was to create a git hub tracker with a list of all Technigo Repositories.
+Used languages: javascript, CSS and some html.
## 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?
+My biggest blockers was to fetch my data from github.
+
## 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.
+Please view at: https://mamites-github-tracker.netlify.app/
diff --git a/code/assets/Ink - 67358.mp4 b/code/assets/Ink - 67358.mp4
new file mode 100644
index 00000000..8829b0bc
Binary files /dev/null and b/code/assets/Ink - 67358.mp4 differ
diff --git a/code/assets/hello_hero_img.jpg b/code/assets/hello_hero_img.jpg
new file mode 100644
index 00000000..af57b761
Binary files /dev/null and b/code/assets/hello_hero_img.jpg differ
diff --git a/code/assets/sky.jpg b/code/assets/sky.jpg
new file mode 100644
index 00000000..6fd05cb5
Binary files /dev/null and b/code/assets/sky.jpg differ
diff --git a/code/chart.js b/code/chart.js
index 92e85a30..16573418 100644
--- a/code/chart.js
+++ b/code/chart.js
@@ -1,4 +1,25 @@
-//DOM-selector for the canvas 👇
-const ctx = document.getElementById('chart').getContext('2d')
+const ctx = document.getElementById('chart').getContext('2d');
-//"Draw" the chart here 👇
+
+const drawChart = (amount) => {
+ const config = {
+ type: 'doughnut',
+ data: {
+ labels: [
+ 'Completed projects',
+ 'Projects left to build',
+ ],
+ datasets: [{
+ label: 'My Technigo projects',
+ data: [amount, 19-amount],
+ backgroundColor: [
+ 'rgb(235, 14, 14)',
+ 'rgb(64, 19, 19)',
+ ],
+ hoverOffset: 4
+ }],
+ },
+ };
+
+ const projectsChart = new Chart(ctx, config);
+}
diff --git a/code/index.html b/code/index.html
index 2fb5e0ae..30d7506d 100644
--- a/code/index.html
+++ b/code/index.html
@@ -1,21 +1,51 @@
+