diff --git a/src/app/components/for-you-page/for-you-page.component.html b/src/app/components/for-you-page/for-you-page.component.html index c5bd0e0..8d00b40 100644 --- a/src/app/components/for-you-page/for-you-page.component.html +++ b/src/app/components/for-you-page/for-you-page.component.html @@ -7,9 +7,13 @@

Für dich vorgeschlagene Aktivit } -
- +
diff --git a/src/app/components/for-you-page/for-you-page.component.ts b/src/app/components/for-you-page/for-you-page.component.ts index f78eca3..548394e 100644 --- a/src/app/components/for-you-page/for-you-page.component.ts +++ b/src/app/components/for-you-page/for-you-page.component.ts @@ -3,14 +3,15 @@ import { Activity } from '../../types/activity.interface'; import { AirtableService } from '../../services/airtable.service'; import { ActivityCardComponent } from '../activity-card/activity-card.component'; import { NgIf } from '@angular/common'; -import { ActivatedRoute, Router } from '@angular/router'; +import { ActivatedRoute, Router, RouterLink } from '@angular/router'; @Component({ selector: 'app-for-you-page', standalone: true, imports: [ ActivityCardComponent, - NgIf + NgIf, + RouterLink ], templateUrl: './for-you-page.component.html', styleUrl: './for-you-page.component.scss'