Add the mastodon link rel to the meta tags component

This commit is contained in:
Dave Smith-Hayes 2024-08-12 21:18:37 -04:00
parent 7f5aac05c4
commit 2d25be7b4c
2 changed files with 2 additions and 1 deletions

View File

@ -4,5 +4,5 @@ export type SiteMeta = {
author?: string,
viewport?: string,
title?: string,
mastodonUrl?: string,
mastodonUrl?: string
};

View File

@ -53,6 +53,7 @@ export function MetaTags({ meta }: { meta: SiteMeta }) {
<Tags meta={meta} />
<Author meta={meta} />
<ViewPort meta={meta} />
<MeRel meta={meta} />
</>
)
}