feat: add testimonials (#10)

Closes #4

Reviewed-on: https://codeberg.org/nhcarrigan/portfolio/pulls/10
Co-authored-by: Naomi <commits@nhcarrigan.com>
Co-committed-by: Naomi <commits@nhcarrigan.com>
This commit is contained in:
2024-05-19 07:16:01 +00:00
committed by Naomi Carrigan
parent b909f4666c
commit f335fcb631
13 changed files with 364 additions and 2 deletions
+22 -1
View File
@@ -20,6 +20,27 @@
</div>
</section>
<hr />
<div class="buttons">
<button (click)="changeView('resume')" [disabled]="view === 'resume'">
Resume
</button>
<button
(click)="changeView('testimonials')"
[disabled]="view === 'testimonials'"
>
Testimonials
</button>
<button
(click)="changeView('certifications')"
[disabled]="view === 'certifications'"
>
Certifications
</button>
<button (click)="changeView('stats')" [disabled]="view === 'stats'">
Stats
</button>
</div>
<section>
<app-timeline></app-timeline>
<app-timeline *ngIf="view === 'resume'"></app-timeline>
<app-testimonials *ngIf="view === 'testimonials'"></app-testimonials>
</section>