Skip to content

Commit 00a218d

Browse files
committed
animation, fixed styling with chart, fixed favicon, updated readme, cleaned up code
1 parent c7e55ee commit 00a218d

15 files changed

+111
-23
lines changed

.DS_Store

6 KB
Binary file not shown.

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
# GitHub Tracker
22

3-
Replace this readme with your own information about your project.
4-
5-
Start by briefly describing the assignment in a sentence or two. Keep it short and to the point.
3+
This week's project was to build a site that keep track of all my repositories that I have created during my time at Technigo. The main purpose of this project was to display information about the projects that I have built, using GitHub API.
64

75
## The problem
86

9-
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?
7+
I started off by fetching all of my repositories and data from the GitHub API. Once I had all the data I needed I dispayed it on the page. Then I started to do a quick scetch in Figma on how I wanted to style the page and then tried to come as close as possible. Of course with the mind set of mobile first.
8+
9+
I struggled a lot with the API token this week, and I had a hard time to publish the site on Netlify.
10+
11+
If I had more time, or less trouble with token-issues, I would add a sort function and a search field. And also I had investigated more time with the styling, as always :)
1012

1113
## View it live
1214

13-
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.
15+
https://ecstatic-franklin-3423e2.netlify.app

code/.DS_Store

6 KB
Binary file not shown.

code/android-chrome-192x192.png

17.4 KB
Loading

code/android-chrome-512x512.png

86.4 KB
Loading

code/apple-touch-icon.png

15.7 KB
Loading

code/chart.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
// font family for chart
2-
Chart.defaults.font.family = "Poppins";
1+
// font family & color for the chart
2+
Chart.defaults.font.family = "Roboto, sans-serif";
3+
Chart.defaults.color = "#333";
34

45
// DOM-selector for the chart
56
const ctx = document.getElementById("chart").getContext("2d");
@@ -25,6 +26,9 @@ const renderChart = (projects) => {
2526
font: {
2627
size: 10,
2728
},
29+
layout: {
30+
padding: 15,
31+
},
2832
},
2933
};
3034

code/favicon-16x16.png

525 Bytes
Loading

code/favicon-32x32.png

1.16 KB
Loading

code/favicon.ico

15 KB
Binary file not shown.

0 commit comments

Comments
 (0)