Skip to content

Commit

Permalink
Start working on CV
Browse files Browse the repository at this point in the history
  • Loading branch information
joealden committed Jan 28, 2019
1 parent 0ee58d6 commit 06c103f
Show file tree
Hide file tree
Showing 9 changed files with 10,873 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# editorconfig.org
root = true

[*]
indent_size = 2
indent_style = space
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Project dependencies
.cache
node_modules
yarn-error.log

# Build directory
/public

# Mac
.DS_Store
7 changes: 7 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"printWidth": 80,
"useTabs": false,
"tabWidth": 2,
"bracketSpacing": true,
"proseWrap": "always"
}
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,20 @@
# joe-aldens-cv

My CV.

## TODO

- Side Projects
- Talq (2018, talq.joealden.com & talq-api.joealden.com)
- px-to-vw (2018, vw.joealden.com)
- Corum (2017 - 2018, corum.joealden.com)
- Self Study
- Study related to side projects (2017-2019)
- FrontendMasters.com (2017-2018, web development courses)
- Lynda.com (2015-2017, web development courses)
- Interests
- I'm also very passionate about computer hardware and the lower level code
that runs on computer hardware. When I'm not playing games that only work on
Windows, I use a Linux distribution called Solus.
- Add details about experience
- Umoro - redesign and cleanup
22 changes: 22 additions & 0 deletions gatsby-config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
module.exports = {
siteMetadata: {
title: "Joe Alden's CV",
siteUrl: "https://cv.joealden.com"
},
plugins: [
"gatsby-plugin-styled-components",
"gatsby-plugin-sitemap",
"gatsby-plugin-robots-txt",
{
resolve: "gatsby-plugin-manifest",
options: {
name: "Joe Alden's CV",
short_name: "Joe Alden's CV",
start_url: "/",
background_color: "#663399",
theme_color: "#663399"
}
},
"gatsby-plugin-netlify"
]
};
30 changes: 30 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"name": "listed",
"description": "Design inspiration / resource site",
"author": "Joe Alden <[email protected]> (joealden.com)",
"version": "0.1.0",
"license": "MIT",
"private": true,
"homepage": "https://github.com/joealden/joe-aldens-cv",
"repository": {
"type": "git",
"url": "git+https://github.com/joealden/joe-aldens-cv.git"
},
"scripts": {
"build": "gatsby build",
"dev": "gatsby develop"
},
"dependencies": {
"react": "^16.7.0",
"react-dom": "^16.7.0",
"styled-components": "^4.1.3"
},
"devDependencies": {
"gatsby": "^2.0.98",
"gatsby-plugin-manifest": "^2.0.13",
"gatsby-plugin-netlify": "^2.0.7",
"gatsby-plugin-robots-txt": "^1.4.0",
"gatsby-plugin-sitemap": "^2.0.4",
"gatsby-plugin-styled-components": "^3.0.4"
}
}
37 changes: 37 additions & 0 deletions src/components/GlobalStyles.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
// @ts-check

import { createGlobalStyle } from "styled-components";

const GlobalStyles = createGlobalStyle`
* {
box-sizing: border-box;
font-family: inherit;
font-size: inherit;
}
html {
font-family: "Roboto", sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-size: 20px;
color: black;
}
body {
margin: 0;
overflow-y: scroll;
overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-weight: normal;
margin: 0;
}
`;

export default GlobalStyles;
Loading

0 comments on commit 06c103f

Please sign in to comment.