diff --git a/.vscode/settings.json b/.vscode/settings.json
index e8783bfe..d6f62461 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -1,3 +1,3 @@
-{
- "liveServer.settings.port": 5505
+{
+ "liveServer.settings.port": 5505
}
\ No newline at end of file
diff --git a/README.md b/README.md
index 1613a3b0..1e0bc54b 100644
--- a/README.md
+++ b/README.md
@@ -1,13 +1,19 @@
-# 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.
-
-## 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.
+# GitHub Tracker
+
+This project makes use of Github API. The user can fetch data to view their own or other Technigo students' profile. The project show the user profile information like name, username and location. It can also show the repositories forked from Technigo's Github account.
+
+Start by briefly describing the assignment in a sentence or two. Keep it short and to the point.
+
+## The problem
+
+Data is fetched from [Github's API](https://docs.github.com/en/rest) by fetching through different URLs with different queries necessary to locate the data needed. Data is also filtered by `.filter()` method or `.find()` in order to get only the repositories forked from Technigo and with pull requests done by the user.
+
+The website has my profile as default but users can search for their own profile. Their repositories from Technigo are the ones that are going to be shown.
+
+A chart showing the number of Technigo projects and some other information are shown. The chart will be re-rendered every time a new profile is searched.
+
+I also added a light mode that will turn the background white and the font color dark and readable. Click on the lightbulb to see this.
+
+## View it live
+
+[Lousanne's Github Tracker](https://happy-noether-88c607.netlify.app/)
diff --git a/code/chart.js b/code/chart.js
index 92e85a30..59bd5fa6 100644
--- a/code/chart.js
+++ b/code/chart.js
@@ -1,4 +1,59 @@
-//DOM-selector for the canvas 👇
-const ctx = document.getElementById('chart').getContext('2d')
-
-//"Draw" the chart here 👇
+//DOM-selector for the canvas 👇
+const ctx = document.getElementById("chart").getContext("2d");
+
+const plugin = {
+ id: "custom_canvas_background_color",
+ beforeDraw: (chart) => {
+ const ctx = chart.canvas.getContext("2d");
+ ctx.save();
+ ctx.globalCompositeOperation = "destination-over";
+ ctx.fillStyle = "rgb(189,219,227)";
+ ctx.fillRect(0, 0, chart.width, chart.height);
+ ctx.restore();
+ },
+};
+
+//"Draw" the chart here 👇
+const drawChart = (amount) => {
+ const config = {
+ type: "polarArea",
+ data: {
+ labels: [
+ "Finished Projects",
+ "Projects Left",
+ "Individual Projects",
+ "Team Projects",
+ ],
+ datasets: [
+ {
+ label: "My First Dataset",
+ data: [amount, 19 - amount, amount - 4, amount - 2],
+ backgroundColor: [
+ "rgb(255, 99, 132)",
+ "rgb(75, 192, 192)",
+ "rgb(247,226,0)",
+ "rgb(84,81,185)",
+ ],
+ },
+ ],
+ },
+ options: {
+ plugins: {
+ title: {
+ display: true,
+ text: "My Github Repositories",
+ color: "#138",
+ font: {
+ size: 25,
+ },
+ },
+ },
+ responsive: true,
+ borderColor: "#d32",
+ color: "#138",
+ },
+ plugins: [plugin],
+ };
+
+ const myChart = new Chart(ctx, config);
+};
diff --git a/code/images/GitHub-Mark-120px-plus.png b/code/images/GitHub-Mark-120px-plus.png
new file mode 100644
index 00000000..ea6ff545
Binary files /dev/null and b/code/images/GitHub-Mark-120px-plus.png differ
diff --git a/code/images/GitHub-Mark-32px.png b/code/images/GitHub-Mark-32px.png
new file mode 100644
index 00000000..8b25551a
Binary files /dev/null and b/code/images/GitHub-Mark-32px.png differ
diff --git a/code/images/GitHub-Mark-64px.png b/code/images/GitHub-Mark-64px.png
new file mode 100644
index 00000000..182a1a3f
Binary files /dev/null and b/code/images/GitHub-Mark-64px.png differ
diff --git a/code/images/GitHub-Mark-Light-120px-plus.png b/code/images/GitHub-Mark-Light-120px-plus.png
new file mode 100644
index 00000000..192846a1
Binary files /dev/null and b/code/images/GitHub-Mark-Light-120px-plus.png differ
diff --git a/code/images/GitHub-Mark-Light-32px.png b/code/images/GitHub-Mark-Light-32px.png
new file mode 100644
index 00000000..628da97c
Binary files /dev/null and b/code/images/GitHub-Mark-Light-32px.png differ
diff --git a/code/images/GitHub-Mark-Light-64px.png b/code/images/GitHub-Mark-Light-64px.png
new file mode 100644
index 00000000..73db1f61
Binary files /dev/null and b/code/images/GitHub-Mark-Light-64px.png differ
diff --git a/code/images/GitHub_Logo.png b/code/images/GitHub_Logo.png
new file mode 100644
index 00000000..e03d8dd8
Binary files /dev/null and b/code/images/GitHub_Logo.png differ
diff --git a/code/images/GitHub_Logo_White.png b/code/images/GitHub_Logo_White.png
new file mode 100644
index 00000000..c61ab9d0
Binary files /dev/null and b/code/images/GitHub_Logo_White.png differ
diff --git a/code/images/book.png b/code/images/book.png
new file mode 100644
index 00000000..d91a5869
Binary files /dev/null and b/code/images/book.png differ
diff --git a/code/images/menu (1).png b/code/images/menu (1).png
new file mode 100644
index 00000000..227404ae
Binary files /dev/null and b/code/images/menu (1).png differ
diff --git a/code/images/mylogo.png b/code/images/mylogo.png
new file mode 100644
index 00000000..a9c44668
Binary files /dev/null and b/code/images/mylogo.png differ
diff --git a/code/images/notification.png b/code/images/notification.png
new file mode 100644
index 00000000..81c73755
Binary files /dev/null and b/code/images/notification.png differ
diff --git a/code/images/pin-map.png b/code/images/pin-map.png
new file mode 100644
index 00000000..cd44c00f
Binary files /dev/null and b/code/images/pin-map.png differ
diff --git a/code/index.html b/code/index.html
index 2fb5e0ae..edfc0326 100644
--- a/code/index.html
+++ b/code/index.html
@@ -1,21 +1,89 @@
-
-
-