diff --git a/DeepDrftPublic.Client/Pages/About.razor b/DeepDrftPublic.Client/Pages/About.razor index d221857..c3d0235 100644 --- a/DeepDrftPublic.Client/Pages/About.razor +++ b/DeepDrftPublic.Client/Pages/About.razor @@ -111,7 +111,10 @@
@member.Name
@if (!string.IsNullOrWhiteSpace(member.Bio)) { -

@member.Bio

+ @foreach (var para in member.Bio.Split("\n\n", StringSplitOptions.RemoveEmptyEntries | StringSplitOptions.TrimEntries)) + { +

@para

+ } } @@ -353,7 +356,7 @@ new( Name: "Khabran Peters", Role: "Production · Sound Design · Live", - Bio: null, + Bio: "Raised on the Chicago underground, this artist cut their teeth on DJ Assault and DJ Funk. They started DJing young, learning to read a room long before they opened a DAW. After fifteen years as a visual artist, they moved into music production.\n\nNow based in Charleston, their sound carries the city's late-night feel but keeps the kinetic edge of its Midwest roots—deep one minute, fast the next. As much indie sensibility as booty-house grit.\n\nThe work is hardware-first, with software kept to remixes and edits. Onstage they stay out of the way and let the tracks do the talking. Polished without being precious—built by someone who cares more about the craft than the spotlight.", PortraitImage1: "img/dd-khabran-bw.jpeg", PortraitImage2: "img/dd-khabran.jpeg"), new( diff --git a/DeepDrftPublic.Client/Pages/About.razor.css b/DeepDrftPublic.Client/Pages/About.razor.css index 58cbe24..17c0bff 100644 --- a/DeepDrftPublic.Client/Pages/About.razor.css +++ b/DeepDrftPublic.Client/Pages/About.razor.css @@ -321,6 +321,10 @@ opacity: 0.7; } +.bio-body + .bio-body { + margin-top: 0.75em; +} + /* ── Inset framed figure (gear shot) with rail-side caption ── */ .movement-figure { margin: 5rem 0 0;