From 35a11d629af47a2ac6c28c413503818b781e8d7a Mon Sep 17 00:00:00 2001 From: gshenmidmark <30505206+gshenmidmark@users.noreply.github.com> Date: Sun, 21 Sep 2025 19:02:01 +0000 Subject: [PATCH] modified app.jsx and styles.css --- src/App.jsx | 16 ++++++++-------- src/styles.css | 10 ++++++++++ 2 files changed, 18 insertions(+), 8 deletions(-) diff --git a/src/App.jsx b/src/App.jsx index 4fbc89d6..f11d001f 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -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"; diff --git a/src/styles.css b/src/styles.css index 999a1740..dc90864a 100644 --- a/src/styles.css +++ b/src/styles.css @@ -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); +} \ No newline at end of file