From bbea98bc4dfbf1afed07b395bab094ff447bc81b Mon Sep 17 00:00:00 2001 From: Eugene Fox Date: Sun, 3 Nov 2024 11:43:28 +0000 Subject: [PATCH] feat: replaced Twitter links with BlueSky --- app/_data/metadata.ts | 3 +-- app/_data/socials.ts | 8 ++++---- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/app/_data/metadata.ts b/app/_data/metadata.ts index 23b0d5c..9bbc3b8 100644 --- a/app/_data/metadata.ts +++ b/app/_data/metadata.ts @@ -28,13 +28,12 @@ export async function generateMetadata(): Promise firstName: Package.author.name.split(" ")[0], lastName: Package.author.name.split(" ")[1], gender, - username: socials["Twitter"].username, siteName: canonicalName.hostname, locale: "en_US" }, twitter: { - site: socials["Twitter"].username, + site: "@xfox111", card: "summary_large_image" }, alternates: diff --git a/app/_data/socials.ts b/app/_data/socials.ts index e9e5b64..246d9b1 100644 --- a/app/_data/socials.ts +++ b/app/_data/socials.ts @@ -12,11 +12,11 @@ const socials: Socials = href: "https://www.linkedin.com/in/xfox/", username: "@xfox" }, - "Twitter": + "BlueSky": { - href: "https://twitter.com/xfox111", - username: "@xfox111" - }, + href: "https://bsky.app/profile/xfox111.net", + username: "@xfox111.net", + } }; export default socials;