Skip to content

Commit 607c9a9

Browse files
committed
Add box shadows, update profile img, home page performance upgrade
1 parent 0f19d13 commit 607c9a9

File tree

7 files changed

+12
-11
lines changed

7 files changed

+12
-11
lines changed

package.json

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "myapp",
3-
"version": "0.1.0",
3+
"version": "2.0.1",
44
"private": true,
5-
"homepage": "https://jacobkrol.github.io/",
5+
"homepage": "https://kroljs.com/",
66
"dependencies": {
77
"react": "^16.13.1",
88
"react-dom": "^16.13.1",
@@ -24,9 +24,7 @@
2424
},
2525
"browserslist": {
2626
"production": [
27-
">0.2%",
28-
"not dead",
29-
"not op_mini all"
27+
"since 2010"
3028
],
3129
"development": [
3230
"last 1 chrome version",

src/components/pages/HomePage.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import TitleCard from '../utilities/TitleCard';
44
import CornerImg from '../utilities/CornerImg';
55
import ContentBlock from '../utilities/ContentBlock';
66

7-
import UICImg from '../../graphics/chicago-uic-small-2.png';
8-
import PortraitImg from '../../graphics/jacob-circle.png';
7+
import UICImg from '../../graphics/chicago-uic-small-3.jpg';
8+
import PortraitImg from '../../graphics/jacob-2.jpeg';
99

1010
function HomePage() {
1111
return (
@@ -19,8 +19,7 @@ function HomePage() {
1919
<img id="portrait" src={PortraitImg} alt="Jacob's Headshot" />
2020
</div>
2121
<div className="content-box">
22-
<h2>Jacob Krol</h2>
23-
<p>Hello! A recent graduate with bachelor degrees in tow, I am a software engineer with a focus in full-stack web development. I am passionate about bringing accessible, intuitive web apps to life through <a href="https://reactjs.org/docs/optimizing-performance.html">lightweight landing pages</a>, <a href="https://caniuse.com/">widely-supported CSS tools</a>, and <a href="https://reactjs.org">new frameworks like ReactJS</a>.</p>
22+
<p>Hello! I am a software engineer with a focus in full-stack web development. I am passionate about bringing accessible, intuitive web apps to life through <a href="https://reactjs.org/docs/optimizing-performance.html">lightweight landing pages</a>, <a href="https://caniuse.com/">widely-supported CSS tools</a>, and <a href="https://reactjs.org">new frameworks like ReactJS</a>. And pancakes.</p>
2423
</div>
2524
</div>
2625
</ContentBlock>

src/graphics/chicago-uic-small-3.jpg

483 KB
Loading

src/graphics/jacob-2.jpeg

897 KB
Loading

src/styles/ContentBlock.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
text-align: center;
55
padding: 40px 10px;
66
display: block;
7+
box-shadow: 0px 0px 6px #444;
78
/* width: 100%; */
89
}
910

src/styles/MediaCard.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
padding: 0;
1111
background-position: center;
1212
background-size: cover;
13+
box-shadow: 0px 0px 6px #AAA;
1314
}
1415

1516
.media-column {

src/styles/index.css

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,10 @@ a {
2121
}
2222

2323
#portrait {
24-
width: 300px;
25-
height: 300px;
24+
width: 250px;
25+
height: 250px;
26+
border-radius: 40%;
27+
box-shadow: 0px 0px 6px #AAA;
2628
}
2729

2830
#page-container {

0 commit comments

Comments
 (0)