Browse Source

V1.0 Vorerst finaler Stand 16.06.

master
Christian Greif 3 years ago
parent
commit
aeffe21f05

+ 0
- 0
src/app/components/about/about.component.css View File


+ 16
- 0
src/app/components/about/about.component.html 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>


+ 25
- 0
src/app/components/about/about.component.spec.ts 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();
});
});

+ 15
- 0
src/app/components/about/about.component.ts 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 {
}

}

Loading…
Cancel
Save