Skip to content

Commit

Permalink
feat(team): update marcs picture
Browse files Browse the repository at this point in the history
  • Loading branch information
marcjulian committed Jul 5, 2019
1 parent 07b286b commit 00c1351
Showing 1 changed file with 23 additions and 25 deletions.
48 changes: 23 additions & 25 deletions src/app/components/team/team.component.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Component, OnInit } from '@angular/core';
import { Component, OnInit } from "@angular/core";

export interface Member {
name: string;
Expand All @@ -9,39 +9,37 @@ export interface Member {
}

@Component({
selector: 'app-team',
templateUrl: './team.component.html',
styleUrls: ['./team.component.scss']
selector: "app-team",
templateUrl: "./team.component.html",
styleUrls: ["./team.component.scss"]
})
export class TeamComponent implements OnInit {

public team: Member[] = [
{
name: 'Gary Großgarten',
picture: 'https://pbs.twimg.com/profile_images/823932144473018369/vGv7gtS__400x400.jpg',
description: 'UX Engineer',
twitter: 'https://twitter.com/garygrossgarten',
github: 'https://github.com/garygrossgarten'
name: "Gary Großgarten",
picture:
"https://pbs.twimg.com/profile_images/823932144473018369/vGv7gtS__400x400.jpg",
description: "UX Engineer",
twitter: "https://twitter.com/garygrossgarten",
github: "https://github.com/garygrossgarten"
},
{
name: 'Frank Thielen',
picture: 'https://frankthielen.de/assets/img/profile_quadrat.png',
description: 'Software Architect & Backend Developer',
twitter: 'https://twitter.com/frank_thi',
github: 'https://github.com/frathi'
name: "Frank Thielen",
picture: "https://frankthielen.de/assets/img/profile_quadrat.png",
description: "Software Architect & Backend Developer",
twitter: "https://twitter.com/frank_thi",
github: "https://github.com/frathi"
},
{
name: 'Marc Stammerjohann',
picture: 'https://pbs.twimg.com/profile_images/1020673483435540480/haTJfT0O_400x400.jpg',
description: 'Full Stack Engineer',
twitter: 'https://twitter.com/mrcjln',
github: 'https://github.com/marcjulian'
name: "Marc Stammerjohann",
picture: "https://marcjulian.de/img/me.jpg",
description: "Full Stack Engineer",
twitter: "https://twitter.com/mrcjln",
github: "https://github.com/marcjulian"
}
];

constructor() { }
];

ngOnInit() {
}
constructor() {}

ngOnInit() {}
}

0 comments on commit 00c1351

Please sign in to comment.