import React, { useEffect, useRef } from 'react'; import { StaticImage } from 'gatsby-plugin-image'; import styled from 'styled-components'; import { srConfig } from '@config'; import sr from '@utils/sr'; import { usePrefersReducedMotion } from '@hooks'; const StyledAboutSection = styled.section` max-width: 900px; .inner { display: grid; grid-template-columns: 3fr 2fr; grid-gap: 50px; @media (max-width: 768px) { display: block; } } `; const StyledText = styled.div` ul.skills-list { display: grid; grid-template-columns: repeat(2, minmax(140px, 200px)); grid-gap: 0 10px; padding: 0; margin: 20px 0 0 0; overflow: hidden; list-style: none; li { position: relative; margin-bottom: 10px; padding-left: 20px; font-family: var(--font-mono); font-size: var(--fz-xs); &:before { content: '▹'; position: absolute; left: 0; color: var(--green); font-size: var(--fz-sm); line-height: 12px; } } } `; const StyledPic = styled.div` position: relative; max-width: 300px; @media (max-width: 768px) { margin: 50px auto 0; width: 70%; } .wrapper { ${({ theme }) => theme.mixins.boxShadow}; display: block; position: relative; width: 100%; border-radius: var(--border-radius); background-color: var(--green); &:hover, &:focus { outline: 0; transform: translate(-4px, -4px); &:after { transform: translate(8px, 8px); } .img { filter: none; mix-blend-mode: normal; } } .img { position: relative; border-radius: var(--border-radius); mix-blend-mode: multiply; filter: grayscale(100%) contrast(1); transition: var(--transition); } &:before, &:after { content: ''; display: block; position: absolute; width: 100%; height: 100%; border-radius: var(--border-radius); transition: var(--transition); } &:before { top: 0; left: 0; background-color: var(--navy); mix-blend-mode: screen; } &:after { border: 2px solid var(--green); top: 14px; left: 14px; z-index: -1; } } `; const About = () => { const revealContainer = useRef(null); const prefersReducedMotion = usePrefersReducedMotion(); useEffect(() => { if (prefersReducedMotion) { return; } sr.reveal(revealContainer.current, srConfig()); }, []); const skills = ['JavaScript (ES6+)', 'TypeScript', 'React', 'Eleventy', 'Node.js', 'WordPress']; return (

About Me

Hello! My name is Brittany and I enjoy creating things that live on the internet. My interest in web development started back in 2012 when I decided to try editing custom Tumblr themes — turns out hacking together a custom reblog button taught me a lot about HTML & CSS!

Fast-forward to today, and I’ve had the privilege of working at{' '} an advertising agency,{' '} a start-up,{' '} a huge corporation, and{' '} a student-led design studio. My main focus these days is building accessible, inclusive products and digital experiences at Upstatement for a variety of clients.

I also recently{' '} launched a course {' '} that covers everything you need to build a web app with the Spotify API using Node & React.

Here are a few technologies I’ve been working with recently:

    {skills && skills.map((skill, i) =>
  • {skill}
  • )}
); }; export default About;