@@ -0,0 +1,16 @@ | |||
<h2>Kontakt:</h2> | |||
<p> Sie möchten mit uns in Kontakt treten, weil sie Fragen, Probleme oder Anregungen haben? Kein Problem! Über die nachfolgenden Kontaktdaten erreichen Sie uns. Wir freuen uns auf Ihre Nachricht! | |||
</p> | |||
<p>Technische Hochschule Nürnberg <br> | |||
Christian Greif<br> | |||
Kesslerplatz 12 <br> | |||
90489 Nürnberg <br> | |||
Tel. 0911-5880-0<br> | |||
Fax 0911-5880-8309 <br> | |||
E-Mail: <a href="mailto:info@th-nuernberg.de">Info@TH-Nuernberg.de</a> <br> Internet: <a href="https://www.th-nuernberg.de/">Technische Hochschule Nürnberg</a></p> | |||
<p> Das WebTeam erreichen Sie über folgende E-Mail Adresse <br> E-Mail: <a href="mailto:greifch67520@th-nuernberg.de">greifch67520@th-nuernberg.de</a> </p> | |||
<br> | |||
<br> | |||
<br> | |||
@@ -0,0 +1,25 @@ | |||
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; | |||
import { AboutComponent } from './about.component'; | |||
describe('AboutComponent', () => { | |||
let component: AboutComponent; | |||
let fixture: ComponentFixture<AboutComponent>; | |||
beforeEach(async(() => { | |||
TestBed.configureTestingModule({ | |||
declarations: [ AboutComponent ] | |||
}) | |||
.compileComponents(); | |||
})); | |||
beforeEach(() => { | |||
fixture = TestBed.createComponent(AboutComponent); | |||
component = fixture.componentInstance; | |||
fixture.detectChanges(); | |||
}); | |||
it('should create', () => { | |||
expect(component).toBeTruthy(); | |||
}); | |||
}); |
@@ -0,0 +1,15 @@ | |||
import { Component, OnInit } from '@angular/core'; | |||
@Component({ | |||
selector: 'app-about', | |||
templateUrl: './about.component.html', | |||
styleUrls: ['./about.component.css'] | |||
}) | |||
export class AboutComponent implements OnInit { | |||
constructor() { } | |||
ngOnInit(): void { | |||
} | |||
} |