wrap hyperlink in topic page

This commit is contained in:
Youwen Wu 2024-02-15 03:14:44 -08:00
parent 76decf8237
commit 5c3ca12554

View file

@ -26,7 +26,9 @@ export default function Page({
<p className='text-slate-700 text-lg'>{description}</p> <p className='text-slate-700 text-lg'>{description}</p>
<p> <p>
<span className='text-slate-800'>Read more at:</span>{' '} <span className='text-slate-800'>Read more at:</span>{' '}
<a href={wiki}>{wiki}</a> <a className='text-wrap hyphens-none' href={wiki}>
{wiki}
</a>
</p> </p>
</div> </div>
) )