portfolio/src/app/home/home.component.html
Naomi f335fcb631 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>
2024-05-19 07:16:01 +00:00

47 lines
1.3 KiB
HTML

<h1>Naomi Carrigan</h1>
<p>Software Engineer | Community Manager</p>
<p class="smaller">
Creative professional with a focus on developing unique Discord bots and
fostering engaged online communities. Eager to leverage technical and
interpersonal skills to drive impactful, user-centric projects. Seeking
clients where my expertise in designing user-centric solutions and managing
vibrant digital spaces can drive engagement and growth.
</p>
<hr />
<section>
<h2>Contact</h2>
<app-social *ngFor="let social of socials" [social]="social" />
</section>
<hr />
<section>
<h2>Featured Clients</h2>
<div class="logo-container">
<app-logo *ngFor="let logo of logos" [logo]="logo" />
</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 *ngIf="view === 'resume'"></app-timeline>
<app-testimonials *ngIf="view === 'testimonials'"></app-testimonials>
</section>