feat: remove space betwee date and state

This commit is contained in:
Ayo Ayco 2025-01-09 03:10:02 +01:00
parent 4a421db2b8
commit ade0af5ad5

View file

@ -14,8 +14,9 @@ const publishedOn = now.publishedOn === '' ? now.publishDate : now.publishedOn
<h1><span class="text-gradient">What I'm doing now</span></h1> <h1><span class="text-gradient">What I'm doing now</span></h1>
<p> <p>
<em <em
>Updated on <time datetime="{now.publishDate}">{publishedOn}</time> >Updated on <time datetime="{now.publishDate}">{publishedOn}</time>{
{now.publishState ? `, ${now.publishState}` : ''}</em now.publishState ? `, ${now.publishState}` : ''
}</em
> >
</p> </p>
<Fragment set:html={nowHtml} /> <Fragment set:html={nowHtml} />