From ff939fb59d28374d8fc8771cc60b6a70e47b967e Mon Sep 17 00:00:00 2001 From: Parker Selbert Date: Thu, 16 Jul 2026 13:55:11 -0500 Subject: [PATCH] Use elixir-slack.community for all Slack links The elixir-lang.slack.com address only works for existing users, whereas the elixir-slack.community site handles automatic invites for new users. --- src/components/home/ShapedByMany.astro | 2 +- src/data/navigation.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/home/ShapedByMany.astro b/src/components/home/ShapedByMany.astro index 31f1abc6c..c848cc513 100644 --- a/src/components/home/ShapedByMany.astro +++ b/src/components/home/ShapedByMany.astro @@ -13,7 +13,7 @@ const links = [ { label: "Team", href: "/development/", icon: "none" as const }, { label: "Slack", - href: "https://elixir-lang.slack.com", + href: "https://elixir-slack.community", icon: "slack" as const, external: true, }, diff --git a/src/data/navigation.ts b/src/data/navigation.ts index 2f6722979..2f273defa 100644 --- a/src/data/navigation.ts +++ b/src/data/navigation.ts @@ -79,7 +79,7 @@ export const footerSocials: NavItem[] = [ href: "https://twitter.com/elixirlang", external: true, }, - { label: "Slack", href: "https://elixir-lang.slack.com", external: true }, + { label: "Slack", href: "https://elixir-slack.community", external: true }, { label: "Discord", href: "https://discord.gg/elixir", external: true }, ];