generated from nhcarrigan/template
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:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user