Skip to content

Commit 00c1351

Browse files
committed
feat(team): update marcs picture
1 parent 07b286b commit 00c1351

File tree

1 file changed

+23
-25
lines changed

1 file changed

+23
-25
lines changed
Lines changed: 23 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Component, OnInit } from '@angular/core';
1+
import { Component, OnInit } from "@angular/core";
22

33
export interface Member {
44
name: string;
@@ -9,39 +9,37 @@ export interface Member {
99
}
1010

1111
@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"]
1515
})
1616
export class TeamComponent implements OnInit {
17-
1817
public team: Member[] = [
1918
{
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"
2525
},
2626
{
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"
3232
},
3333
{
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"
3939
}
40-
];
41-
42-
constructor() { }
40+
];
4341

44-
ngOnInit() {
45-
}
42+
constructor() {}
4643

44+
ngOnInit() {}
4745
}

0 commit comments

Comments
 (0)