feat: make title h1

This commit is contained in:
Ayo 2023-05-11 17:10:52 +02:00
parent 4539bb9e79
commit 75a8ab3124

View file

@ -10,7 +10,7 @@ export interface Props {
{
article ? (
<h2>{article.title}</h2>
<h1>{article.title}</h1>
<p>by <em>{article.author}</em></p>
<span set:html={article.content} />
) : ''