diff --git a/README.md b/README.md
index 1613a3b0..67ea39b2 100644
--- a/README.md
+++ b/README.md
@@ -1,13 +1,16 @@
# GitHub Tracker
-Replace this readme with your own information about your project.
+## The problem
-Start by briefly describing the assignment in a sentence or two. Keep it short and to the point.
+The assignment was to build a GitHub tracker, using APIs to fetch information about our Technigo projects. We needed to filter and find certain bits of the arrays to get the correct information.
-## The problem
+It has been a fun, but difficult project. To me, the lessons have been very useful. I can read the code and more or less understand it, but I have a hard time coming up with the correct solutions on my own.
+I followed the lessons and then implemented what I had learned in my own code. I always rewrote the code (I didn't copy-paste) in order to grasp what I was doing.
+I coded together with my team several times, it was great.
-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?
+I focused on getting all the js/chart in place first, and then went on with the styling. It was more challenging than I thought, but by asking my team and looking at stack overflow I think it went well!
-## View it live
+If I had more time I would look into the red and black requirements. And add a footer with some contact info.
-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.
+## View it live
+https://github-tracker-maria.netlify.app/
diff --git a/code/chart.js b/code/chart.js
index 92e85a30..facf3bee 100644
--- a/code/chart.js
+++ b/code/chart.js
@@ -2,3 +2,46 @@
const ctx = document.getElementById('chart').getContext('2d')
//"Draw" the chart here 👇
+const drawChart = (amount) => {
+
+
+const config = {
+ type: 'doughnut',
+ data: {
+ labels: [
+ 'Finished projects',
+ 'Upcoming projects',
+ ],
+
+ datasets: [{
+ label: 'My projects at Technigo',
+ data: [amount, 19-amount],
+ backgroundColor: [
+ '#f6e271',
+ '#f6B915',
+ ],
+ hoverOffset: 4
+ }]
+ },
+
+ // Changeing the fontsize
+ options: {
+ plugins: {
+ legend: {
+ position: "bottom",
+ labels: {
+ font: {
+ size: 20,
+ },
+ },
+ },
+ },
+ },
+
+};
+
+
+const projectsChart = new Chart(ctx, config);
+}
+
+
diff --git a/code/github-tracker.code-workspace b/code/github-tracker.code-workspace
new file mode 100644
index 00000000..56aa326a
--- /dev/null
+++ b/code/github-tracker.code-workspace
@@ -0,0 +1,11 @@
+{
+ "folders": [
+ {
+ "path": ".."
+ }
+ ],
+ "settings": {
+ "liveServer.settings.port": 5505,
+ "liveServer.settings.multiRootWorkspaceName": "MAKScode"
+ }
+}
\ No newline at end of file
diff --git a/code/index.html b/code/index.html
index 2fb5e0ae..288fe94a 100644
--- a/code/index.html
+++ b/code/index.html
@@ -1,19 +1,38 @@
+