generated from nhcarrigan/template
Closes #5 Reviewed-on: https://codeberg.org/nhcarrigan/portfolio/pulls/11 Co-authored-by: Naomi <commits@nhcarrigan.com> Co-committed-by: Naomi <commits@nhcarrigan.com>
49 lines
1.4 KiB
HTML
49 lines
1.4 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>
|
|
<app-certifications *ngIf="view === 'certifications'"></app-certifications>
|
|
<app-stats *ngIf="view === 'stats'"></app-stats>
|
|
</section>
|