From b0f285c30f4647652800de2cad408090605f7dcd Mon Sep 17 00:00:00 2001 From: Louis Morgan Date: Tue, 31 Oct 2023 10:46:28 +0000 Subject: [PATCH] fix meta tags attempt 2 --- src/components/head/BaseHead.astro | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/src/components/head/BaseHead.astro b/src/components/head/BaseHead.astro index 626852b4..8dd334a9 100644 --- a/src/components/head/BaseHead.astro +++ b/src/components/head/BaseHead.astro @@ -34,6 +34,14 @@ const social_image = image: social_image, }, }} + , + twitter={{ + title: title, + description: description, + card: "summary_large_image", + image: social_image, + creator: "@LinaroOrg", + }} extend={{ link: [ { @@ -42,17 +50,6 @@ const social_image = }, ], meta: [ - { property: "twitter:creator", content: "@LinaroOrg" }, - { - property: "twitter:image", - content: social_image, - }, - { property: "twitter:title", content: title }, - { property: "twitter:description", content: description }, - { - property: "twitter:card", - content: social_image, - }, { property: "og:image", content: social_image,