From f36241486f8f6a7de1c8bfa86827b3802001c956 Mon Sep 17 00:00:00 2001 From: Ayo Date: Sun, 13 Nov 2022 18:49:06 +0100 Subject: [PATCH] add mastodon verification link --- src/components/Card.astro | 5 +++-- src/components/Footer.astro | 1 + src/pages/social.astro | 10 ++++++++++ 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/src/components/Card.astro b/src/components/Card.astro index 0453b66..82fe815 100644 --- a/src/components/Card.astro +++ b/src/components/Card.astro @@ -4,13 +4,14 @@ export interface Props { body: string; href: string; newTab?: boolean; + rel?: string; } -const { href, title, body, newTab = false } = Astro.props; +const { href, title, rel, body, newTab = false } = Astro.props; ---