Skip to content

Instantly share code, notes, and snippets.

View niekert's full-sized avatar

Niek Kruse niekert

  • Framer
  • Amsterdam, the Netherlands
  • 12:44 - 1h ahead
View GitHub Profile
[
{
"slug": "starting-a-career-in-web-design",
"title": "Starting and Growing a Career in Web Design",
"date": "2022-04-08T00:00:00.000Z",
"image": "https://framerusercontent.com/images/64n4wnVJKDJspLlFZ6DarCP0M4.jpg",
"content": "<p>As the internet continues to develop and grow exponentially, jobs related to the industry do too, particularly those that relate to web design and development. The prediction is that by 2029, the job outlook for these two fields will grow by 8%—significantly faster than average. Whether you’re seeking salaried employment or aiming to work in a freelance capacity, a career in web design can offer a variety of employment arrangements, competitive salaries, and opportunities to utilize both technical and creative skill sets.</p>\\n\\n<h2>What does a career in web design involve?</h2>\\n<p>A career in website design can involve the design, creation, and coding of a range of website types. Other tasks will typically include liaising with clients and discussing we
[{
"title": "Hi"
}]

Keybase proof

I hereby claim:

  • I am niekert on github.
  • I am niekert (https://keybase.io/niekert) on keybase.
  • I have a public key ASDbLv6a8yWZ5byRULXRWBtAW6R7cb5dTvmWDkTH58sY_Ao

To claim this, I am signing this object:

@niekert
niekert / gist:095c42a4c1895fbb16aff7ca5d0ff14d
Last active April 5, 2016 19:27
React High Order Component
import React from 'react';
export default function(ComposedComponent) {
class HOC extends Component {
render() {
return (
<ComposedComponent {...this.props} />
);
}
}