|
|
|
@ -1,5 +1,6 @@
|
|
|
|
---
|
|
|
|
---
|
|
|
|
import formatDate from "@/utils/formatDate";
|
|
|
|
import formatDate from "@/utils/formatDate";
|
|
|
|
|
|
|
|
import LinkArrow from "./LinkArrow.astro";
|
|
|
|
|
|
|
|
|
|
|
|
type Props = {
|
|
|
|
type Props = {
|
|
|
|
title: string;
|
|
|
|
title: string;
|
|
|
|
@ -22,7 +23,7 @@ const { title, publishedAt, description, slug } = Astro.props;
|
|
|
|
<div class="flex flex-row items-center gap-4">
|
|
|
|
<div class="flex flex-row items-center gap-4">
|
|
|
|
<p>{formatDate(publishedAt)}</p>
|
|
|
|
<p>{formatDate(publishedAt)}</p>
|
|
|
|
|
|
|
|
|
|
|
|
<svg
|
|
|
|
<!-- <svg
|
|
|
|
width="18"
|
|
|
|
width="18"
|
|
|
|
height="18"
|
|
|
|
height="18"
|
|
|
|
viewBox="0 0 18 18"
|
|
|
|
viewBox="0 0 18 18"
|
|
|
|
@ -39,7 +40,8 @@ const { title, publishedAt, description, slug } = Astro.props;
|
|
|
|
stroke="#999999"
|
|
|
|
stroke="#999999"
|
|
|
|
stroke-linecap="round"
|
|
|
|
stroke-linecap="round"
|
|
|
|
stroke-linejoin="round"></path>
|
|
|
|
stroke-linejoin="round"></path>
|
|
|
|
</svg>
|
|
|
|
</svg> -->
|
|
|
|
|
|
|
|
<LinkArrow />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|