V1.0 Vorerst finaler Stand 16.06.
This commit is contained in:
parent
2253524549
commit
aeffe21f05
0
src/app/components/about/about.component.css
Normal file
0
src/app/components/about/about.component.css
Normal file
16
src/app/components/about/about.component.html
Normal file
16
src/app/components/about/about.component.html
Normal 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>
|
||||||
|
|
25
src/app/components/about/about.component.spec.ts
Normal file
25
src/app/components/about/about.component.spec.ts
Normal 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();
|
||||||
|
});
|
||||||
|
});
|
15
src/app/components/about/about.component.ts
Normal file
15
src/app/components/about/about.component.ts
Normal 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 {
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user