I'm a Frontend Engineer who loves creating things. In regards to FED, I'm most passionate about optimising accessibility, guiding performance, and โจ making pretty things โจ
- View my projects on my personal website ๐ป๐
- Check out some photography or just me on Instagram ๐ธ
- Connect with me on LinkedIn ๐
- Listen to King Krule with me on Spotify ๐ง
import React from 'react'
import { Human } from 'react-human'
export default const Noah = (props) => {
const workingOn = [
"Work things",
"Oxvg, a Rust alternative to SVGO",
]
const learning = [
"Painting",
"Neovim",
"Rust ๐ฆ",
]
/**
* TODO: Want to learn
* Music Composition ๐น
* Game Development ๐ฎ
*/
const previousLearning = [
"Amazon Cognito",
"Circuitry",
"Guitar",
]
const interestAndHobbies = [
"Film Photography ๐",
"Investing ๐ฎ",
"Ancient History & Mythology ๐ฟ",
"Fitness ๐",
"Design & Art ๐จ",
]
return (
<Human
๐จโ๐ป={workingOn}
๐จโ๐={previousLearning}
๐ค={learning}
โ๏ธ={interestsAndHobbies}
>
๐
๐
๐
</Human>
)
}