font hinzugefügt
Einladungstext und Kontakt hinzugefügt
This commit is contained in:
0
ui/src/app/location/location.component.css
Normal file
0
ui/src/app/location/location.component.css
Normal file
30
ui/src/app/location/location.component.html
Normal file
30
ui/src/app/location/location.component.html
Normal file
@@ -0,0 +1,30 @@
|
||||
<h3>Unser Fest</h3>
|
||||
<p>
|
||||
Wir heiraten am 20.08.2022<br />
|
||||
und würden uns freuen,<br />
|
||||
wenn Ihr diesen besonderen Tag<br />
|
||||
mit uns feiern würdet.
|
||||
</p>
|
||||
|
||||
|
||||
<p>
|
||||
Wir werden gemeinsam in<br />
|
||||
Landgasthof Dockemeyer<br />
|
||||
Hauptstraße 433<br />
|
||||
26683 Ramsloh<br />
|
||||
um 19 Uhr auf diesen Tag anstoßen.<br />
|
||||
<a href="#">Wegbeschreibung</a>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Die Standesamtliche Trauung<br />
|
||||
findet um 13 Uhr in der<br />Mühle Scharrel statt.<br />
|
||||
<a href="#">Wegbeschreibung</a>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Bitte lasst uns bis zum <br /><b>20.06.2022</b><br /> wissen, ob wir Euch als unsere Gäste<br /> empfangen dürfen<br /><a href="#">Kontaktmöglichkeiten</a>
|
||||
</p>
|
||||
|
||||
<br />
|
||||
<p>Wir freuen uns auf Euch</p>
|
||||
25
ui/src/app/location/location.component.spec.ts
Normal file
25
ui/src/app/location/location.component.spec.ts
Normal file
@@ -0,0 +1,25 @@
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { LocationComponent } from './location.component';
|
||||
|
||||
describe('LocationComponent', () => {
|
||||
let component: LocationComponent;
|
||||
let fixture: ComponentFixture<LocationComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
declarations: [ LocationComponent ]
|
||||
})
|
||||
.compileComponents();
|
||||
});
|
||||
|
||||
beforeEach(() => {
|
||||
fixture = TestBed.createComponent(LocationComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
15
ui/src/app/location/location.component.ts
Normal file
15
ui/src/app/location/location.component.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-location',
|
||||
templateUrl: './location.component.html',
|
||||
styleUrls: ['./location.component.css']
|
||||
})
|
||||
export class LocationComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit(): void {
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user