-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
10,873 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"printWidth": 80, | ||
"useTabs": false, | ||
"tabWidth": 2, | ||
"bracketSpacing": true, | ||
"proseWrap": "always" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
] | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
Oops, something went wrong.