The site is more or less working. Some weirdness with animations though

This commit is contained in:
Cameron
2018-10-20 20:11:33 -04:00
parent c6f5c3d86e
commit 67c314924f
48 changed files with 1337 additions and 71 deletions

View File

@@ -0,0 +1,24 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-contact',
templateUrl: './contact.component.html',
styleUrls: ['./contact.component.css']
})
export class ContactComponent {
constructor() { }
linkedInClicked() {
window.open("https://www.linkedin.com/in/cameron-cordes-3b166583/")
}
githubClicked() {
window.open("https://github.com/Stampede10343")
}
emailClicked() {
window.open("mailto:cameronc.dev@gmail.com")
}
}