From 95fcacf5810683c2ce4e3f9b3b24715d56e8c65b Mon Sep 17 00:00:00 2001 From: Chris W Date: Wed, 20 Sep 2023 22:41:37 -0600 Subject: [PATCH] mastodon verification --- src/components/LinkButton.astro | 4 +++- src/components/Socials.astro | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/LinkButton.astro b/src/components/LinkButton.astro index c37608a..0e62467 100644 --- a/src/components/LinkButton.astro +++ b/src/components/LinkButton.astro @@ -4,10 +4,11 @@ export interface Props { className?: string; ariaLabel?: string; title?: string; + rel?: string; disabled?: boolean; } -const { href, className, ariaLabel, title, disabled = false } = Astro.props; +const { href, className, ariaLabel, title, rel, disabled = false } = Astro.props; --- diff --git a/src/components/Socials.astro b/src/components/Socials.astro index e6c8a90..4a35cb0 100755 --- a/src/components/Socials.astro +++ b/src/components/Socials.astro @@ -16,6 +16,7 @@ const { centered = false, withText = false } = Astro.props; SOCIALS.filter(social => social.active).map(social => (