diff --git a/frontend/public/images/cruise.jpg b/frontend/public/images/cruise.jpg new file mode 100644 index 0000000..fb37f4a Binary files /dev/null and b/frontend/public/images/cruise.jpg differ diff --git a/frontend/public/images/disc_golf_ace.jpg b/frontend/public/images/disc_golf_ace.jpg new file mode 100644 index 0000000..5a8fd09 Binary files /dev/null and b/frontend/public/images/disc_golf_ace.jpg differ diff --git a/frontend/public/images/odin.jpg b/frontend/public/images/odin.jpg new file mode 100644 index 0000000..040b9f4 Binary files /dev/null and b/frontend/public/images/odin.jpg differ diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 10af657..4636add 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -5,6 +5,9 @@ import React, { useEffect, useRef, } from "react"; +import cruiseImg from "./images/cruise.jpg"; +import discGolfImg from "./images/disc_golf_ace.jpg"; +import odinImg from "./images/odin.jpg"; import { BrowserRouter as Router, Routes, @@ -418,32 +421,36 @@ function LandingPage() { function About() { return (
-
- Photo 1 - Photo 2 - Photo 3 +
+ {[cruiseImg, discGolfImg, odinImg].map((src, i) => ( + {["Cruise", + ))}

About Me

- I am a software engineer at Whisker who designs and implements - whatever is highest priority. I work with every team in the - engineering organization to coordinate mission-critical projects - across backend, mobile, and firmware. I’m comfortable in many tech - stacks and learn new ones quickly—never afraid to jump in the deep end - and adapt on the fly. + I’m Alex, a full-stack engineer at Whisker, working on backend one + minute, mobile tweaks the next, and firmware the day after. Learning + new tech is something I'm passionate about, and I’m all about + spreading that knowledge fast. Off-duty you’ll catch me reading a + bunch, writing (ironically, on my blog, which you are currently + viewing), exploring the outdoors with my dogs (and my girlfriend, + trust me she’s real!), or rolling dice as a D&D sorcerer. Here + you’ll find book thoughts, code experiments, and random shower + thoughts. Thanks for stopping by!

diff --git a/frontend/src/images/cruise.jpg b/frontend/src/images/cruise.jpg new file mode 100644 index 0000000..fb37f4a Binary files /dev/null and b/frontend/src/images/cruise.jpg differ diff --git a/frontend/src/images/disc_golf_ace.jpg b/frontend/src/images/disc_golf_ace.jpg new file mode 100644 index 0000000..5a8fd09 Binary files /dev/null and b/frontend/src/images/disc_golf_ace.jpg differ diff --git a/frontend/src/images/odin.jpg b/frontend/src/images/odin.jpg new file mode 100644 index 0000000..040b9f4 Binary files /dev/null and b/frontend/src/images/odin.jpg differ