diff --git a/src/components/LinkArrow.astro b/src/components/LinkArrow.astro new file mode 100644 index 0000000..7e15ca8 --- /dev/null +++ b/src/components/LinkArrow.astro @@ -0,0 +1,18 @@ + + + + \ No newline at end of file diff --git a/src/components/PostCard.astro b/src/components/PostCard.astro index 6917c88..6052899 100644 --- a/src/components/PostCard.astro +++ b/src/components/PostCard.astro @@ -1,5 +1,6 @@ --- import formatDate from "@/utils/formatDate"; +import LinkArrow from "./LinkArrow.astro"; type Props = { title: string; @@ -22,7 +23,7 @@ const { title, publishedAt, description, slug } = Astro.props;

{formatDate(publishedAt)}

- - + --> +
diff --git a/src/components/SocialLinks.astro b/src/components/SocialLinks.astro index 4c960bf..1b940d3 100644 --- a/src/components/SocialLinks.astro +++ b/src/components/SocialLinks.astro @@ -1,14 +1,15 @@ --- import Link from "./shared/Link.astro"; import presentation from "@/data/presentation"; +import LinkArrow from "@/components/LinkArrow.astro" ---