diff --git a/public/images/ryan.jpg b/public/images/ryan.jpg new file mode 100644 index 00000000..7388b95b Binary files /dev/null and b/public/images/ryan.jpg differ diff --git a/src/pages/index.astro b/src/pages/index.astro index d506015c..9486f12f 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -70,6 +70,13 @@ import Layout from "../layouts/Layout.astro";

> About

+
+ Ryan Kazokas +

I'm Ryan Kazokas, a Senior Software Engineer at Shopify working on the Core Inventory Team, where I build solutions to help merchants manage their inventory at scale. @@ -224,6 +231,22 @@ import Layout from "../layouts/Layout.astro"; } } + /* Profile Photo */ + .profile-photo { + width: 180px; + height: 180px; + border-radius: 50%; + border: 2px solid #00ff41; + box-shadow: 0 0 20px rgba(0, 255, 65, 0.4), 0 0 40px rgba(0, 255, 65, 0.1); + object-fit: cover; + transition: all 0.3s ease; + } + + .profile-photo:hover { + box-shadow: 0 0 30px rgba(0, 255, 65, 0.6), 0 0 60px rgba(0, 255, 65, 0.2); + transform: scale(1.05); + } + /* Text-based social links */ .text-social-link { color: #00ff41;