diff --git a/src/components/article.astro b/src/components/article.astro index 05d31db..3cafbd3 100644 --- a/src/components/article.astro +++ b/src/components/article.astro @@ -9,9 +9,15 @@ export interface Props { --- { -article ? ( -

{article.title}

-

by {article.author}

- - ) : '' + article ? ( +
+

{article.title}

+

+ by {article.author} +

+ +
+ ) : ( + "" + ) }