Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ import "./styles.css";
* If you don't have one of the social sites listed, leave it as an empty string.
*/
const siteProps = {
name: "Alexandrie Grenier",
title: "Web Designer & Content Creator",
email: "alex@example.com",
gitHub: "microsoft",
instagram: "microsoft",
linkedIn: "satyanadella",
name: "G. Shen",
title: "Principal Biomedical Engineer",
email: "gshen@midmark.com",
gitHub: "gshenmidmark",
instagram: "none",
linkedIn: "none",
medium: "",
twitter: "microsoft",
youTube: "Code",
twitter: "none",
youTube: "none",
};

const primaryColor = "#4E567E";
Expand Down
10 changes: 10 additions & 0 deletions src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -123,3 +123,13 @@ img.socialIcon {
height: 30px;
width: 30px;
}

/* add an amazing animation to the social icons */

img.socialIcon {
transition: transform 0.3s ease;
}

img.socialIcon:hover {
transform: scale(1.2);
}