V1.0 Vorerst finaler Stand 16.06.

This commit is contained in:
Christian Greif 2020-06-16 14:16:32 +02:00
parent 2253524549
commit aeffe21f05
4 changed files with 56 additions and 0 deletions

View File

@ -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>

View File

@ -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();
});
});

View File

@ -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 {
}
}