Skip to content

Commit

Permalink
refine
Browse files Browse the repository at this point in the history
  • Loading branch information
avo committed Oct 27, 2024
1 parent a7003c8 commit e3aab97
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 22 deletions.
2 changes: 1 addition & 1 deletion src/core/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const primaryButtonStyle = css`
:active,
:visited:active {
color: var(--av-color-link-fg-active);
background-color: var(--av-color-primary-bg);
background-color: var(--av-color-primary-bg-active);
border: 1px solid var(--av-color-primary-border-active);
}
`;
Expand Down
8 changes: 8 additions & 0 deletions src/layout/MainSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,17 @@ const contentWrapperStyle = css`
width: 93%;
z-index: -1;
@media (max-width: ${breakpointMaxWidth.lg}) {
top: -100px;
}
@media (max-width: ${breakpointMaxWidth.md}) {
top: -80px;
}
@media (max-width: ${breakpointMaxWidth.sm}) {
top: -60px;
}
}
/* bottom right small pentagon */
Expand Down
41 changes: 21 additions & 20 deletions src/routes/About.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,28 +11,29 @@ export function About() {
<p>Hello and welcome!</p>

<p>
I’m a frontend developer from the Midwest, specializing in building user-friendly UI
components with a strong emphasis on accessibility, consistency, and usability. Currently,
as a principal software engineer on the frontend services team at Acquia, I have
consistently driven improvements in the developer experience, established standards and best
practices, and mentored and onboarded new team members. My contributions include writing
code, end-to-end tests, and documentation. Additionally, I perform code reviews and
collaborate across departments to drive consistency, usability, and accessibility across
multiple applications.
I’m a frontend developer specializing in building user-friendly UI components with a strong
emphasis on accessibility, consistency, and usability. Currently, as a principal software
engineer on the frontend services team at Acquia, I consistently drive improvements in the
developer experience, establish standards and best practices, and onboard and mentor new
team members. My contributions include reviewing designs for pattern reuse and technical
feasibility, writing code, unit and end-to-end tests, and documentation. Additionally, I
perform code reviews and collaborate across departments to drive consistency, usability, and
accessibility across multiple applications.
</p>

<p>
With a focus on detail and a certification in UX, I strive to create accessible and
inclusive experiences while enhancing the developer experience for any team I join. My
journey began as a fullstack developer, but my joy for the frontend led me to specialize.
With nearly two decades of development experience, predominantly in an agile CI/CD
environment, I have worked with teams creating software as a service (SaaS). This includes
working on older monolithic software, newer microservices, mono-repos, and micro-frontends.
With a focus on detail and a certification in UX, I create accessible and inclusive
experiences while enhancing the developer experience for any team I join. My journey began
as a fullstack developer, but my joy for the frontend led me to specialize. With nearly two
decades of development experience, predominantly in an agile CI/CD environment, I have
worked with teams creating software as a service (SaaS). This includes working on older
monolithic software, newer microservices, mono-repos, and micro-frontends.
</p>

<p>
My current tech stack includes, but is not limited to, React, Typescript, Jest and
Playwright. For more about my work experience, check out my{' '}
Playwright with the occasional update to a Java backend for frontend (BFF). For more about
my work experience, check out my{' '}
<Anchor href="https://www.linkedin.com/in/annavo/" target="_blank">
LinkedIn profile
</Anchor>{' '}
Expand Down Expand Up @@ -74,18 +75,18 @@ export function About() {
developer experience
</li>
<li>
Accessibility advocate - experience taking a company with no accessibility to one that
includes accessibility in the software project lifecyle
Accessibility advocate - experience introducing and implementing a software accessibility
practice within the software project lifecyle
</li>
</ul>

<h2>Personal</h2>

<p>
Outside of work, I enjoy reading, listening to audiobooks, crocheting, sewing, and exploring
Outside of work, I enjoy reading, listening to audiobooks, and staying active by running,
biking, hiking and other workouts. I also enjoy painting, crocheting, sewing, and exploring
various arts and crafts. I'm a huge fan of science fiction and fantasy. In my downtime, I
enjoy gaming, having spent countless hours in World of Warcraft and Diablo. I also love
staying active with running, biking, hiking, and other workouts.
enjoy gaming, having spent countless hours in the World of Warcraft and Diablo.
</p>

<h2>What others say about me</h2>
Expand Down
2 changes: 2 additions & 0 deletions src/routes/AboutSite.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ export function AboutSite() {
using Axe DevTools, VoiceOver, and keyboard.
</p>

<p>Stylistically, the background shapes were created using pseudo-elements.</p>

<p>
Feel free to{' '}
<Anchor href="https://github.com/avo/gio" target="_blank">
Expand Down
3 changes: 2 additions & 1 deletion src/styles/Mixins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ export const breakpointMaxWidth = {
xs: '444px',
sm: '599px',
md: '767px',
lg: '1023px',
lg: '929px',
xl: '1023px',
};
/* eslint-enable sort/object-properties */

Expand Down

0 comments on commit e3aab97

Please sign in to comment.