diff --git a/src/App.jsx b/src/App.jsx index 4fbc89d..35eac27 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -24,15 +24,16 @@ 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: "Jan Carlo Viray", + title: "data scientist", + email: "carlo@viray.com", + gitHub: "karlhans", + instagram: "karlhans", + linkedIn: "karlhans", medium: "", - twitter: "microsoft", - youTube: "Code", + twitter: "softmicrokarlhans", + youTube: "edocnirp", + website: "https://viray.com" }; const primaryColor = "#4E567E"; diff --git a/src/styles.css b/src/styles.css index 999a174..9b4590a 100644 --- a/src/styles.css +++ b/src/styles.css @@ -123,3 +123,26 @@ img.socialIcon { height: 30px; width: 30px; } + +/* Add animation for social icons */ +@keyframes bounce { + 0%, 20%, 50%, 80%, 100% { + transform: translateY(0); + } + 40% { + transform: translateY(-10px); + } + 60% { + transform: translateY(-5px); + } +} + +img.socialIcon { + height: 30px; + width: 30px; + transition: transform 0.3s ease-in-out; +} + +img.socialIcon:hover { + animation: bounce 0.6s; +}