home component

This commit is contained in:
Lurkars
2021-03-13 10:08:54 +01:00
parent 52faaba99e
commit 0aaf36bba2
21 changed files with 47 additions and 946 deletions
@@ -0,0 +1,43 @@
import {Component, OnInit} from '@angular/core';
@Component({
selector: 'app-imprint',
templateUrl: './general.imprint.html'
})
export class ImprintComponent implements OnInit {
constructor() {
}
ngOnInit(): void {
}
}
@Component({
selector: 'app-privacy-policy',
templateUrl: './general.privacy-policy.html'
})
export class PrivacyPolicyComponent implements OnInit {
constructor() {
}
ngOnInit(): void {
}
}
@Component({
selector: 'app-terms-of-service',
templateUrl: './general.terms-of-service.html'
})
export class TermsOfServiceComponent implements OnInit {
constructor() {
}
ngOnInit(): void {
}
}
@@ -0,0 +1 @@
<app-html [template]="'imprint'"></app-html>
@@ -0,0 +1 @@
<app-html [template]="'privacy-policy'"></app-html>
@@ -0,0 +1 @@
<app-html [template]="'terms-of-service'"></app-html>