Skip to content

Commit e2ec4c0

Browse files
committed
more projects
1 parent e0bafc7 commit e2ec4c0

File tree

8 files changed

+43
-6
lines changed

8 files changed

+43
-6
lines changed

.DS_Store

-2 KB
Binary file not shown.

src/assets/svg/BG.svg

Lines changed: 1 addition & 0 deletions
Loading

src/assets/svg/BG2.svg

Lines changed: 1 addition & 0 deletions
Loading

src/assets/svg/projects/keys.png

420 KB
Loading

src/components/Navbar/Navbar.js

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ import { FaUser } from 'react-icons/fa';
99
import { makeStyles } from '@material-ui/core/styles';
1010
import Drawer from '@material-ui/core/Drawer';
1111
import CloseIcon from '@material-ui/icons/Close';
12-
12+
import BG from "../../assets/img/JCircle.png";
13+
import BG2 from "../../assets/svg/BG2.svg";
1314
import './Navbar.css';
1415
import { headerData } from '../../data/headerData';
1516
import { ThemeContext } from '../../contexts/ThemeContext';
@@ -61,6 +62,13 @@ function Navbar() {
6162
width: '12em',
6263
},
6364
},
65+
bgStyle: {
66+
height:'10em',
67+
padding: '1%',
68+
69+
70+
},
71+
6472
closebtnIcon: {
6573
fontSize: '2rem',
6674
fontWeight: 'bold',
@@ -133,9 +141,7 @@ function Navbar() {
133141
return (
134142
<div className='navbar'>
135143
<div className='navbar--container'>
136-
<h1 style={{ color: theme.secondary }}>
137-
{shortname(headerData.name)}
138-
</h1>
144+
<img src={BG} className={classes.bgStyle}/>
139145

140146
<IoMenuSharp
141147
className={classes.navMenu}

src/data/headerData.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ export const headerData = {
88
href1:"<a href=",
99
url:"https://www.instructure.com/",
1010
href2:"\" alt='jon christie headshot portfolio fullstack11235'\"><a>",
11-
image: '../../assets/img/hs.svg',
11+
image: 'https://raw.githubusercontent.com/mathcodes/jc22/main/src/assets/img/hs.png',
1212
resumePdf: resume
1313
}

src/data/projectsData.js

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import tech from '../assets/svg/projects/pythonlog.svg'
33
import three from '../assets/svg/projects/mars.svg'
44
import scb from '../assets/svg/projects/scb.svg'
55
import p2h from '../assets/svg/projects/p2h.svg'
6+
import keys from '../assets/svg/projects/keys.png'
67

78

89
export const projectsData = [
@@ -51,4 +52,32 @@ export const projectsData = [
5152
demo: 'https://mathcodes.github.io/pick2hand/',
5253
image: p2h
5354
},
55+
{
56+
id: 6,
57+
projectName: 'Pro Typer',
58+
projectDesc: 'A quick project to review event handlers and do something useful and practical. Use this app to improve your keyboarding skills. FUTURE DEVELOPMENT: Scoring, typing words, difficulty levels, and wpm calculation. Coming soon!',
59+
tags: ['HTML', 'CSS', 'JS', 'express'],
60+
code: 'https://github.com/mathcodes/monitor',
61+
demo: 'https://mathcodes.github.io/pick2hand/',
62+
image: keys
63+
},
64+
// {
65+
// id: 7,
66+
// projectName: 'Pro Typer',
67+
// projectDesc: 'A quick project to review event handlers and do something useful and practical. Use this app to improve your keyboarding skills. FUTURE DEVELOPMENT: Scoring, typing words, difficulty levels, and wpm calculation. Coming soon!',
68+
// tags: ['HTML', 'CSS', 'JS', 'express'],
69+
// code: 'https://github.com/mathcodes/monitor',
70+
// demo: 'https://mathcodes.github.io/pick2hand/',
71+
// image: keys
72+
// },
73+
// {
74+
// id: 8,
75+
// projectName: 'Pro Typer',
76+
// projectDesc: 'A quick project to review event handlers and do something useful and practical. Use this app to improve your keyboarding skills. FUTURE DEVELOPMENT: Scoring, typing words, difficulty levels, and wpm calculation. Coming soon!',
77+
// tags: ['HTML', 'CSS', 'JS', 'express'],
78+
// code: 'https://github.com/mathcodes/monitor',
79+
// demo: 'https://mathcodes.github.io/pick2hand/',
80+
// image: keys
81+
// },
82+
5483
]

src/pages/Main/Main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ function Main() {
88
return (
99
<div>
1010
<Helmet>
11-
<title>{headerData.name} - Porfolio</title>
11+
<title>{headerData.name} - Portfolio</title>
1212
</Helmet>
1313

1414
<Navbar />

0 commit comments

Comments
 (0)