1
- import { Component , OnInit } from ' @angular/core' ;
1
+ import { Component , OnInit } from " @angular/core" ;
2
2
3
3
export interface Member {
4
4
name : string ;
@@ -9,39 +9,37 @@ export interface Member {
9
9
}
10
10
11
11
@Component ( {
12
- selector : ' app-team' ,
13
- templateUrl : ' ./team.component.html' ,
14
- styleUrls : [ ' ./team.component.scss' ]
12
+ selector : " app-team" ,
13
+ templateUrl : " ./team.component.html" ,
14
+ styleUrls : [ " ./team.component.scss" ]
15
15
} )
16
16
export class TeamComponent implements OnInit {
17
-
18
17
public team : Member [ ] = [
19
18
{
20
- name : 'Gary Großgarten' ,
21
- picture : 'https://pbs.twimg.com/profile_images/823932144473018369/vGv7gtS__400x400.jpg' ,
22
- description : 'UX Engineer' ,
23
- twitter : 'https://twitter.com/garygrossgarten' ,
24
- github : 'https://github.com/garygrossgarten'
19
+ name : "Gary Großgarten" ,
20
+ picture :
21
+ "https://pbs.twimg.com/profile_images/823932144473018369/vGv7gtS__400x400.jpg" ,
22
+ description : "UX Engineer" ,
23
+ twitter : "https://twitter.com/garygrossgarten" ,
24
+ github : "https://github.com/garygrossgarten"
25
25
} ,
26
26
{
27
- name : ' Frank Thielen' ,
28
- picture : ' https://frankthielen.de/assets/img/profile_quadrat.png' ,
29
- description : ' Software Architect & Backend Developer' ,
30
- twitter : ' https://twitter.com/frank_thi' ,
31
- github : ' https://github.com/frathi'
27
+ name : " Frank Thielen" ,
28
+ picture : " https://frankthielen.de/assets/img/profile_quadrat.png" ,
29
+ description : " Software Architect & Backend Developer" ,
30
+ twitter : " https://twitter.com/frank_thi" ,
31
+ github : " https://github.com/frathi"
32
32
} ,
33
33
{
34
- name : ' Marc Stammerjohann' ,
35
- picture : ' https://pbs.twimg.com/profile_images/1020673483435540480/haTJfT0O_400x400 .jpg' ,
36
- description : ' Full Stack Engineer' ,
37
- twitter : ' https://twitter.com/mrcjln' ,
38
- github : ' https://github.com/marcjulian'
34
+ name : " Marc Stammerjohann" ,
35
+ picture : " https://marcjulian.de/img/me .jpg" ,
36
+ description : " Full Stack Engineer" ,
37
+ twitter : " https://twitter.com/mrcjln" ,
38
+ github : " https://github.com/marcjulian"
39
39
}
40
- ] ;
41
-
42
- constructor ( ) { }
40
+ ] ;
43
41
44
- ngOnInit ( ) {
45
- }
42
+ constructor ( ) { }
46
43
44
+ ngOnInit ( ) { }
47
45
}
0 commit comments