From 448153a787613647800af3b49ff5b495c4e98f88 Mon Sep 17 00:00:00 2001 From: Andrew Brower Date: Tue, 30 Sep 2025 00:21:50 -0400 Subject: [PATCH] feat: short bio thing --- src/components/NowPlaying.tsx | 2 +- src/pages/index.astro | 20 ++++++++++++++++++-- src/styles/global.css | 8 ++++++++ 3 files changed, 27 insertions(+), 3 deletions(-) diff --git a/src/components/NowPlaying.tsx b/src/components/NowPlaying.tsx index 3c0b7e3..e00ec76 100644 --- a/src/components/NowPlaying.tsx +++ b/src/components/NowPlaying.tsx @@ -28,7 +28,7 @@ const NowPlaying: Component = () => { // this will need a style rework to make it look good when appearing/disappearing const artistLink = (artist: Artist) => ( - + {artist.name} diff --git a/src/pages/index.astro b/src/pages/index.astro index a0702e1..5e7d00c 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -4,7 +4,23 @@ import NowPlaying from "../components/NowPlaying.tsx" --- -

Andrew Brower

-

Software Engineer

+ +
+

Andrew Brower

+

Software Engineer

+
+ +

I'm Andrew, a software engineer based in North Carolina.

+

+ I specialize in systems and web development and I'm skilled in + lots of languages, including Rust, TypeScript, Go, + and Kotlin. Check out my + GitHub + to see some of my projects! +

+

+ Recently, I've been playing with Gleam, a strongly-typed functional language that + runs on the Erlang VM. It's powering this site's Spotify widget. +

diff --git a/src/styles/global.css b/src/styles/global.css index 90a2706..30e2774 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -36,4 +36,12 @@ :root { font-family: var(--font-display); +} + +strong { + @apply font-bold; +} + +p { + @apply my-2; } \ No newline at end of file -- 2.51.2