Skip to content

Commit 35a11d6

Browse files
committed
modified app.jsx and styles.css
1 parent f4684ac commit 35a11d6

2 files changed

Lines changed: 18 additions & 8 deletions

File tree

src/App.jsx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ import "./styles.css";
2424
* If you don't have one of the social sites listed, leave it as an empty string.
2525
*/
2626
const siteProps = {
27-
name: "Alexandrie Grenier",
28-
title: "Web Designer & Content Creator",
29-
email: "alex@example.com",
30-
gitHub: "microsoft",
31-
instagram: "microsoft",
32-
linkedIn: "satyanadella",
27+
name: "G. Shen",
28+
title: "Principal Biomedical Engineer",
29+
email: "gshen@midmark.com",
30+
gitHub: "gshenmidmark",
31+
instagram: "none",
32+
linkedIn: "none",
3333
medium: "",
34-
twitter: "microsoft",
35-
youTube: "Code",
34+
twitter: "none",
35+
youTube: "none",
3636
};
3737

3838
const primaryColor = "#4E567E";

src/styles.css

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,3 +123,13 @@ img.socialIcon {
123123
height: 30px;
124124
width: 30px;
125125
}
126+
127+
/* add an amazing animation to the social icons */
128+
129+
img.socialIcon {
130+
transition: transform 0.3s ease;
131+
}
132+
133+
img.socialIcon:hover {
134+
transform: scale(1.2);
135+
}

0 commit comments

Comments
 (0)