From e63be605485ae09d6fe87a1c7205e6ec50e5e2cc Mon Sep 17 00:00:00 2001 From: Randy Fay Date: Mon, 2 Dec 2024 16:43:30 -0700 Subject: [PATCH] Add bluesky --- src/components/Footer.astro | 8 +++++++- src/const.ts | 1 + 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/src/components/Footer.astro b/src/components/Footer.astro index a53e8316..5f62b01c 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -10,7 +10,8 @@ import { COPYRIGHT_HOLDER, MASTODON_URL, GITHUB_URL, - STORE_URL, + STORE_URL, + BLUESKY_URL, } from "../const" import Icon from "./Icon.astro" @@ -36,6 +37,11 @@ const navigation = { name: "Discord", href: DISCORD_URL, }, + { + name: "Bluesky", + href: BLUESKY_URL, + me:true + }, { name: "Mastodon", href: MASTODON_URL, diff --git a/src/const.ts b/src/const.ts index 16477fc8..07fb07e5 100644 --- a/src/const.ts +++ b/src/const.ts @@ -1,6 +1,7 @@ export const SITE_TITLE = 'DDEV'; export const SITE_DESCRIPTION = 'Docker-based local PHP+Node.js web development environments.'; export const STORE_URL = 'https://ddev.threadless.com'; +export const BLUESKY_URL = 'https://bsky.app/profile/ddev.bsky.social'; export const GITHUB_REPO = 'ddev/ddev'; export const GITHUB_URL = 'https://github.com/ddev/ddev'; export const GITHUB_URL_WEBSITE = 'https://github.com/ddev/ddev.com/tree/main/src/content/blog';