Andre Kempf
+Großschneidersweg 2a
+76149 Karlsruhe
++ {{ "imprint.tel" | translate }}: + 0172-4180328 +
++ {{ "imprint.mail" | translate }}: + mail@andre-kempf.com +
+{{ "imprint.liabilityContentDescription" | translate }}
+ +{{ "imprint.liabilityLinksDescription" | translate }}
+ +{{ "imprint.copyrightDescription" | translate }}
+ +{{ "imprint.dataProtectionDescription" | translate }}
++ {{ "imprint.sourceText0" | translate }} + {{ + "imprint.sourceLink0" | translate + }} + {{ "imprint.sourceText1" | translate }} + {{ + "imprint.sourceLink1" | translate + }} +
+Andre Kempf
-Großschneidersweg 2a
-76149 Karlsruhe
-- {{ "imprint.tel" | translate }}: - 0172-4180328 -
-- {{ "imprint.mail" | translate }}: - mail@andre-kempf.com -
-{{ "imprint.liabilityContentDescription" | translate }}
- -{{ "imprint.liabilityLinksDescription" | translate }}
- -{{ "imprint.copyrightDescription" | translate }}
- -{{ "imprint.dataProtectionDescription" | translate }}
-- {{ "imprint.sourceText0" | translate }} - {{ - "imprint.sourceLink0" | translate - }} - {{ "imprint.sourceText1" | translate }} - {{ - "imprint.sourceLink1" | translate - }} -
-privacy-policy works!
diff --git a/src/app/shared/components/privacy-policy/privacy-policy.component.scss b/src/app/shared/components/privacy-policy/privacy-policy.component.scss index 7157eea..e69de29 100644 --- a/src/app/shared/components/privacy-policy/privacy-policy.component.scss +++ b/src/app/shared/components/privacy-policy/privacy-policy.component.scss @@ -1,54 +0,0 @@ -section { - word-wrap: break-word; -} - -.header { - display: flex; - justify-content: space-between; - align-items: center; - margin-bottom: 32px; - img { - width: 32px; - height: 32px; - cursor: pointer; - margin-left: 48px; - &:hover { - width: 36px; - height: 36px; - background-color: var(--light-gray); - border-radius: 18px; - } - } -} - -h1 { - padding-bottom: 24px; - font-size: 90px; - font-weight: 700; -} - -h2 { - font-size: 44px; - font-weight: 700; - padding: 48px 0 24px 0; -} - -h3 { - font-size: 28px; - font-weight: 700; - padding: 24px 0; -} - -p { - font-size: 16px; - font-weight: 400; - padding-bottom: 10px; -} - -a { - color: var(--light-blue); - text-decoration: none; - &:hover { - text-decoration: underline; - } -} diff --git a/src/app/shared/components/privacy-policy/privacy-policy.component.ts b/src/app/shared/components/privacy-policy/privacy-policy.component.ts index 65292d0..38f178a 100644 --- a/src/app/shared/components/privacy-policy/privacy-policy.component.ts +++ b/src/app/shared/components/privacy-policy/privacy-policy.component.ts @@ -1,18 +1,12 @@ import { Component } from '@angular/core'; -import { Location } from '@angular/common'; -import { TranslateModule } from '@ngx-translate/core'; @Component({ selector: 'app-privacy-policy', standalone: true, - imports: [TranslateModule], + imports: [], templateUrl: './privacy-policy.component.html', - styleUrl: './privacy-policy.component.scss', + styleUrl: './privacy-policy.component.scss' }) export class PrivacyPolicyComponent { - constructor(private location: Location) {} - backClicked() { - this.location.back(); - } }