My personal site hosted @ https://indexx.dev

feat: update mastodon social link rel

Index 2a2fb6ae 7d66a796

Changed files
+5 -2
src
+3 -1
src/components/SocialLink.astro
···
title: string;
placement?: string;
};
+
rel?: string;
}
-
const { icon, name, href, tooltip } = Astro.props;
+
const { icon, name, href, tooltip, rel } = Astro.props;
const Icon = icon;
---
<a
+
rel={rel}
href={href}
target="_blank"
{...tooltip && {
+2 -1
src/components/SocialLinks.astro
···
{
icon: Mastodon,
name: "Mastodon",
-
href: "https://mastodon.social/@index@indexx.dev",
+
href: "https://social.indexx.dev/@index",
+
rel: "me",
tooltip: {
title: "My GoToSocial instance: @index@indexx.dev",
placement: "top",