From 0df6271d7e393b8acbfd1610eed37bd43d9bdc67 Mon Sep 17 00:00:00 2001 From: BuyMyMojo <hello_git@buymymojo.net> Date: Mon, 16 Dec 2024 01:14:38 +1100 Subject: [PATCH] Forgot to add taget to the a tag in FriendLink --- src/components/FriendLink.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/FriendLink.astro b/src/components/FriendLink.astro index 2ee31b2..f883481 100644 --- a/src/components/FriendLink.astro +++ b/src/components/FriendLink.astro @@ -1,4 +1,4 @@ --- const { name, image, target } = Astro.props; --- -<a href={`${target}`}><img class="badge" src={`${image}`} alt={`${name}`} decoding="async" /></a> \ No newline at end of file +<a href={`${target}`} target="_blank"><img class="badge" src={`${image}`} alt={`${name}`} decoding="async" /></a> \ No newline at end of file