Skip to content
Open
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
12 changes: 6 additions & 6 deletions src/App.jsx
Original file line numberDiff line numberDiff 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",
name: "Chamodya Ganegamage",
title: "Web Designer & Content Creator",
email: "alex@example.com",
gitHub: "microsoft",
instagram: "microsoft",
linkedIn: "satyanadella",
gitHub: "chamo7788",
instagram: "",
linkedIn: "Chamodya Ganegamage ",
medium: "",
twitter: "microsoft",
youTube: "Code",
twitter: "",
youTube: "@SparkRevolution891",
};

const primaryColor = "#4E567E";
Expand Down
16 changes: 16 additions & 0 deletions src/styles.css
Original file line numberDiff line numberDiff line change
Expand Up@@ -123,3 +123,19 @@ img.socialIcon {
height: 30px;
width: 30px;
}
img.socialIcon:hover {
animation: bounce 0.5s;
animation-iteration-count: infinite;
}

@keyframes bounce {
0% {
transform: scale(1);
}
50% {
transform: scale(1.2);
}
100% {
transform: scale(1);
}
}