feat: Redesign About page. (#899)

* Redesign About page.

* feat: migrate About page to ngrx.

* Fix import relative path; order contributors by the number of contributions.
This commit is contained in:
dgyimesi
2019-01-27 00:43:57 +01:00
committed by László Monda
parent 8947f2dedf
commit 2c041b64ff
17 changed files with 318 additions and 23 deletions

View File

@@ -0,0 +1,7 @@
export interface UHKContributor {
login: string;
avatar_url: string;
html_url: string;
contributions: number;
avatar: Blob;
}