-
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
12 changed files
with
7,260 additions
and
5,993 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
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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,15 @@ | ||
import React from "react" | ||
import styled from "styled-components" | ||
|
||
const StyledTagLabel = styled.div` | ||
color: ${props => props.theme.onBackground}; | ||
opacity: ${props => props.theme.headerOpacity}; | ||
` | ||
|
||
interface Props { | ||
text: string | ||
} | ||
|
||
const TagLabel = ({ text }: Props) => <StyledTagLabel>{text}</StyledTagLabel> | ||
|
||
export default TagLabel |
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
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
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
This file was deleted.
Oops, something went wrong.
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,34 @@ | ||
export default [ | ||
{ | ||
name: "Project Reunite", | ||
summary: | ||
"A submission which placed 1st in the IBM UK Call for Code competition and was then selected in the final 5, out of 132 projects in the global contest. It's a mobile-friendly web app for reuniting loved ones after a natural disaster, using facial feature recognition.", | ||
technologies: ["React", "Mineral-UI", "Express", "Socket.io"], | ||
codeLink: "https://github.com/project-reunite/reunite", | ||
deploymentLink: "http://project-reunite.eu-gb.cf.appdomain.cloud/#/", | ||
}, | ||
{ | ||
name: "MERN TODO App", | ||
summary: | ||
"A MongoDB based app I use to track daily tasks. The Next.js client offers pages for; CRUD operations on todays tasks, for managing all tasks through a calendar, and a graphical summary of tasks completed.", | ||
technologies: ["MongoDB", "Express", "React", "Node.js", "Next.js"], | ||
codeLink: "https://github.com/MERN-todo?type=source", | ||
deploymentLink: "", | ||
}, | ||
{ | ||
name: "jamescockbain.com", | ||
summary: | ||
"This website! Starting from a basic Gatsby Typescript starter, with custom styled-components styles. Deployed with Netlify.", | ||
technologies: ["Gatsby", "Typescript", "Styled-Components", "Netlify"], | ||
codeLink: "https://github.com/project-reunite/reunite", | ||
deploymentLink: "https://jamescockbain.com", | ||
}, | ||
{ | ||
name: "Advent Of Code", | ||
summary: | ||
"Solutions for the christmas-themed Advent of Code challenges (adventofcode.com), written in Python.", | ||
technologies: ["Python", "Algorithms"], | ||
codeLink: "https://github.com/jcockbain/advent-of-code", | ||
deploymentLink: "", | ||
}, | ||
] |