major update angular

This commit is contained in:
2026-03-11 20:58:58 +01:00
parent 79c71fcf45
commit 1294f0f07c
27 changed files with 965 additions and 433 deletions

View File

@@ -1,5 +1,13 @@
import { Component } from '@angular/core';
interface Features {
id: number,
claim: string,
description: string,
icon?: string,
iconDescription?: string
}
@Component({
selector: 'app-features-section',
imports: [],
@@ -7,5 +15,26 @@ import { Component } from '@angular/core';
styleUrl: './features-section.component.scss',
})
export class FeaturesSectionComponent {
featuresList: Features[] = [
{
id: 1,
claim: "Code statt Baukasten",
description: "Handgefertigte Performance, die Google und Ihre Nutzer lieben werden."
},
{
id: 2,
claim: "Sicher per Design",
description: "Maximale Rechtskonformität durch eRecht24 und hauseigene Server-Infrastruktur."
},
{
id: 3,
claim: "Heimat für Ihre Daten",
description: "Hosting und Services strikt nach europäischem Datenschutzstandard."
},
{
id: 4,
claim: "Alles im Blick",
description: "Ein Portal für alles: Kommunikation, Verwaltung und Erfolgskontrolle"
},
]
}