From 75a8ab31243567e02e2467e26451c85038b4dcd6 Mon Sep 17 00:00:00 2001 From: Ayo Date: Thu, 11 May 2023 17:10:52 +0200 Subject: [PATCH] feat: make title h1 --- src/components/article.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/article.astro b/src/components/article.astro index a0c8315..05d31db 100644 --- a/src/components/article.astro +++ b/src/components/article.astro @@ -10,7 +10,7 @@ export interface Props { { article ? ( -

{article.title}

+

{article.title}

by {article.author}

) : ''