From 888071e23430979a54d1af1b699e9c2bcd3e34cf Mon Sep 17 00:00:00 2001 From: Andrey Nering <7011819+andreynering@users.noreply.github.com> Date: Sat, 7 Sep 2024 20:58:29 -0300 Subject: [PATCH] chore(website): added bluesky url to the footer --- website/constants.ts | 1 + website/docusaurus.config.ts | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/website/constants.ts b/website/constants.ts index d697e5c0..cfb0ea71 100644 --- a/website/constants.ts +++ b/website/constants.ts @@ -1,5 +1,6 @@ export const GITHUB_URL = 'https://github.com/go-task/task'; export const TWITTER_URL = 'https://twitter.com/taskfiledev'; +export const BLUESKY_URL = 'https://bsky.app/profile/taskfile.dev'; export const MASTODON_URL = 'https://fosstodon.org/@task'; export const DISCORD_URL = 'https://discord.gg/6TY36E39UK'; export const STACK_OVERFLOW = 'https://stackoverflow.com/questions/tagged/taskfile'; diff --git a/website/docusaurus.config.ts b/website/docusaurus.config.ts index 663047b5..23610c9c 100644 --- a/website/docusaurus.config.ts +++ b/website/docusaurus.config.ts @@ -7,6 +7,7 @@ import remarkGfm from 'remark-gfm'; import { DISCORD_URL } from './constants'; import { GITHUB_URL } from './constants'; +import { BLUESKY_URL } from './constants'; import { MASTODON_URL } from './constants'; import { TWITTER_URL } from './constants'; import { STACK_OVERFLOW } from './constants'; @@ -182,6 +183,11 @@ const config: Config = { { label: 'Twitter', href: TWITTER_URL + }, + { + label: 'Bluesky', + href: BLUESKY_URL, + rel: 'me' }, { label: 'Mastodon',