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"
---
{
presentation.socials.map((social, index) => (
<>
- -
-
+
-
+
{presentation.socials.length - 1 !== index && - /
}
diff --git a/src/data/presentation.ts b/src/data/presentation.ts
index 6629fdb..0e7b995 100644
--- a/src/data/presentation.ts
+++ b/src/data/presentation.ts
@@ -22,7 +22,7 @@ const presentation: Presentation = {
*API development*. When I'm not working, I play guitar and am an avid gamer.",
socials: [
{
- label: "View my GitHub 🡕",
+ label: "View my GitHub",
link: "https://github.com/gabehf",
},
],