import { ChangeDetectionStrategy, Component } from '@angular/core'; import { CommonModule } from '@angular/common'; import { SectionComponent } from '../../shared/ui/section/section.component'; @Component({ selector: 'app-about-me-section', standalone: true, imports: [CommonModule, SectionComponent], changeDetection: ChangeDetectionStrategy.OnPush, template: `

I care about pairing good taste with solid engineering practices. Whether building a new product or refining an existing one, I work to keep the codebase tidy, the UI cohesive, and the delivery predictable.

I thrive in cross-functional teams, translating between design, product, and engineering to keep efforts aligned and transparent.

Working principles

  • • Design for clarity, then refine for speed.
  • • Prefer simple interfaces over clever abstractions.
  • • Optimize for maintainability and team velocity.

Ways I help

  • • Structuring design systems and component libraries.
  • • Improving developer experience and tooling.
  • • Coaching teams on pragmatic testing and reviews.
` }) export class AboutMeSectionComponent { readonly sectionId = 'about-me'; }