@@ -236,7 +236,7 @@ export function StoryOfAdventureDetail() {
236236 < Calendar size = { 16 } />
237237 < span > { selectedStory . date } </ span >
238238 </ div >
239- < h1 className = "text-4xl lg:text-5xl tracking-tight" >
239+ < h1 className = "text-4xl lg:text-5xl tracking-tight text-gray-900 " >
240240 { selectedStory . title }
241241 </ h1 >
242242 </ header >
@@ -288,7 +288,7 @@ export function StoryOfAdventureDetail() {
288288 // Handle list objects
289289 if ( item . type === 'list' && Array . isArray ( item . items ) ) {
290290 return (
291- < ul key = { index } className = "list-disc list-outside space-y-3 text-xl text-muted-foreground leading-relaxed ml-6 marker:text-gray-400 " >
291+ < ul key = { index } className = "list-disc list-outside space-y-3 text-xl text-gray-900 leading-relaxed ml-6 marker:text-gray-600 " >
292292 { item . items . map ( ( listItem : string , listIndex : number ) => (
293293 < li key = { listIndex } className = "pl-2" > { listItem } </ li >
294294 ) ) }
@@ -299,7 +299,7 @@ export function StoryOfAdventureDetail() {
299299 // Handle regular text paragraphs
300300 if ( typeof item === 'string' ) {
301301 return (
302- < p key = { index } className = "text-xl text-muted-foreground leading-relaxed" >
302+ < p key = { index } className = "text-xl text-gray-900 leading-relaxed" >
303303 { item }
304304 </ p >
305305 ) ;
@@ -308,7 +308,7 @@ export function StoryOfAdventureDetail() {
308308 } ) }
309309 </ div >
310310 ) : (
311- < p className = "text-xl text-muted-foreground leading-relaxed whitespace-pre-line" >
311+ < p className = "text-xl text-gray-900 leading-relaxed whitespace-pre-line" >
312312 { selectedStory . content . description }
313313 </ p >
314314 ) }
@@ -340,30 +340,30 @@ export function StoryOfAdventureDetail() {
340340
341341 { /* What I Did */ }
342342 < section className = "space-y-4" >
343- < h2 className = "text-2xl font-semibold" > { labels . whatIDid } </ h2 >
343+ < h2 className = "text-2xl font-semibold text-gray-900 " > { labels . whatIDid } </ h2 >
344344 < ul className = "grid md:grid-cols-2 gap-3" >
345345 { selectedStory . content . work . map ( ( item ) => (
346346 < li key = { item } className = "flex items-start gap-2" >
347347 < span className = "text-blue-600 mt-1" > •</ span >
348- < span className = "text-muted-foreground " > { item } </ span >
348+ < span className = "text-gray-900 " > { item } </ span >
349349 </ li >
350350 ) ) }
351351 </ ul >
352352 </ section >
353353
354354 { /* Reflection */ }
355355 < section className = { `bg-gradient-to-br ${ themeColors [ selectedStory . theme as keyof typeof themeColors ] } border rounded-2xl p-6 space-y-3` } >
356- < h2 className = "text-2xl font-semibold" > { labels . reflection } </ h2 >
356+ < h2 className = "text-2xl font-semibold text-gray-900 " > { labels . reflection } </ h2 >
357357 { Array . isArray ( selectedStory . content . impact ) ? (
358358 < div className = "space-y-4" >
359359 { selectedStory . content . impact . map ( ( paragraph , index ) => (
360- < p key = { index } className = "text-lg text-muted-foreground italic leading-relaxed" >
360+ < p key = { index } className = "text-lg text-gray-900 italic leading-relaxed" >
361361 { paragraph }
362362 </ p >
363363 ) ) }
364364 </ div >
365365 ) : (
366- < p className = "text-lg text-muted-foreground italic leading-relaxed whitespace-pre-line" >
366+ < p className = "text-lg text-gray-900 italic leading-relaxed whitespace-pre-line" >
367367 { selectedStory . content . impact }
368368 </ p >
369369 ) }
@@ -384,10 +384,10 @@ export function StoryOfAdventureDetail() {
384384 transition = { { duration : 0.8 } }
385385 className = "mb-12"
386386 >
387- < h2 className = "text-3xl lg:text-4xl tracking-tight mb-4" >
387+ < h2 className = "text-3xl lg:text-4xl tracking-tight mb-4 text-gray-900 " >
388388 Other Stories of Adventure
389389 </ h2 >
390- < p className = "text-lg text-muted-foreground " >
390+ < p className = "text-lg text-gray-900 " >
391391 Explore more adventures and stories
392392 </ p >
393393 </ motion . div >
@@ -465,10 +465,10 @@ export function StoryOfAdventureDetail() {
465465 viewport = { { once : true } }
466466 transition = { { duration : 0.8 } }
467467 >
468- < h2 className = "text-4xl lg:text-5xl tracking-tight mb-6" >
468+ < h2 className = "text-4xl lg:text-5xl tracking-tight mb-6 text-gray-900 " >
469469 Let's connect
470470 </ h2 >
471- < p className = "text-xl text-muted-foreground mb-8" >
471+ < p className = "text-xl text-gray-900 mb-8" >
472472 Want to learn more about this story or share your own adventures? I'd love to hear from you.
473473 </ p >
474474 < div className = "flex flex-col sm:flex-row gap-4 justify-center" >
0 commit comments