Skip to content

Commit 56f35a2

Browse files
authored
add dog! (#27)
* resume, public, dog * add favicon * revert * spacing
1 parent 92eb3b4 commit 56f35a2

File tree

8 files changed

+16
-13
lines changed

8 files changed

+16
-13
lines changed

public/favicon.ico

15 KB
Binary file not shown.

public/quince.png

592 KB
Loading
File renamed without changes.

scripts/deploy.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ yarn build
77

88
ssh root@$IP "rm -rf /www/kevinchen/*"
99
scp -r dist/* root@$IP:/www/kevinchen/
10-
scp -r resume.pdf root@$IP:/www/kevinchen/resume.pdf
10+
scp -r public/* root@$IP:/www/public/

src/components/about/About.tsx

+4-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,10 @@ function About() {
5858
charmbracelet
5959
</LinkNewTab>
6060
). If I have time even outside of that you can find me climbing, gaming,
61-
training for a triathlon, or playing with my dog (TODO: link).
61+
training for a triathlon, or playing with{" "}
62+
<LinkNewTab href="/public/quince.png">
63+
my dog.
64+
</LinkNewTab>
6265
</Typography>
6366
<Typography variant="body1"></Typography>
6467
</Section>

src/components/intro/Intro.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ function Intro() {
4545
<LinkedInIcon fontSize="inherit" />
4646
</LinkNewTab>
4747
<LinkNewTab
48-
href="/resume.pdf"
48+
href="/public/resume.pdf"
4949
sx={{
5050
color: zenburnColors.subtext,
5151
}}

src/data/publication.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export interface Publication {
77
const publications: Publication[] = [
88
{
99
citation:
10-
"Kevin Chen and Haoqi Zhang. 2015. Remote Paper Prototype Testing. In Proceedings of the 33rd Annual ACM Conference on Human Factors in Computing Systems (CHI '15). ACM, New York, NY, USA, 77-80",
10+
"Kevin Chen and Haoqi Zhang. 2015. Remote Paper Prototype Testing. In Proceedings of the 33rd Annual ACM Conference on Human Factors in Computing Systems (CHI '15). ACM, New York, NY, USA, 77-80.",
1111
paperLink: "http://dl.acm.org/citation.cfm?id=2702423",
1212
codeLink: "https://github.com/NUDelta/remote-paper-prototype-testing",
1313
},

src/index.html

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<!DOCTYPE html>
22
<html lang="en">
3-
<head>
4-
<meta charset="UTF-8" />
5-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<title>Kevin Chen | aspin</title>
7-
</head>
8-
<body style="margin: 0">
9-
<div id="root"></div>
10-
<script src="index.tsx"></script>
11-
</body>
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>Kevin Chen | aspin</title>
7+
</head>
8+
<body style="margin: 0">
9+
<div id="root"></div>
10+
<script src="index.tsx"></script>
11+
</body>
1212
</html>

0 commit comments

Comments
 (0)