From aa11529511c8598f1e2593ee41e8ba0b93cdf3b8 Mon Sep 17 00:00:00 2001
From: Maycon Santos
Date: Wed, 28 May 2025 23:50:55 +0100
Subject: [PATCH] update slack url and twitter (#355)
* update slack url and twitter
use a dedicated url for slack, allowing update in a single place
rename Twitter references to X
* rollback Install NetBird title in navigation menu
---
next.config.mjs | 5 +++++
src/components/Footer.jsx | 2 +-
src/components/Header.jsx | 2 +-
src/components/NavigationAPI.jsx | 2 +-
src/components/NavigationDocs.jsx | 4 ++--
src/pages/how-to/add-machines-to-your-network.mdx | 4 ++--
src/pages/how-to/add-users-to-your-network.mdx | 6 +++---
src/pages/how-to/approve-peers.mdx | 2 +-
src/pages/how-to/audit-events-logging.mdx | 4 ++--
.../configuring-default-routes-for-internet-traffic.mdx | 4 ++--
src/pages/how-to/delete-account.mdx | 2 +-
src/pages/how-to/enable-post-quantum-cryptography.mdx | 4 ++--
src/pages/how-to/enforce-periodic-user-authentication.mdx | 4 ++--
src/pages/how-to/getting-started.mdx | 2 +-
src/pages/how-to/kubernetes-operator.mdx | 4 ++--
src/pages/how-to/lazy-connection.mdx | 4 ++--
src/pages/how-to/manage-dns-in-your-network.mdx | 4 ++--
src/pages/how-to/manage-posture-checks.mdx | 4 ++--
src/pages/how-to/multi-factor-authentication.mdx | 4 ++--
src/pages/how-to/networks.mdx | 4 ++--
src/pages/how-to/report-bug-issues.mdx | 4 ++--
src/pages/how-to/resolve-overlapping-routes.mdx | 4 ++--
src/pages/how-to/routing-traffic-to-multiple-resources.mdx | 4 ++--
src/pages/how-to/routing-traffic-to-private-networks.mdx | 2 +-
src/pages/how-to/secure-remote-webserver-access.mdx | 4 ++--
src/pages/ipa/guides/errors.mdx | 2 +-
src/pages/selfhosted/self-hosted-vs-cloud-netbird.mdx | 2 +-
src/pages/selfhosted/selfhosted-guide.mdx | 4 ++--
src/pages/selfhosted/selfhosted-quickstart.mdx | 4 ++--
29 files changed, 53 insertions(+), 48 deletions(-)
diff --git a/next.config.mjs b/next.config.mjs
index 19f0e2fc..2e240de0 100644
--- a/next.config.mjs
+++ b/next.config.mjs
@@ -24,6 +24,11 @@ const nextConfig = {
},
redirects: async () => {
return [
+ {
+ source: '/slack-url',
+ destination: 'https://join.slack.com/t/netbirdio/shared_invite/zt-36ckpgzva-_V4OFhWhDA8e2v_Fy6zR3w',
+ permanent: false,
+ },
{
source: '/how-to/networks-concept',
destination: '/how-to/networks',
diff --git a/src/components/Footer.jsx b/src/components/Footer.jsx
index 16a7aaa7..f6986955 100644
--- a/src/components/Footer.jsx
+++ b/src/components/Footer.jsx
@@ -239,7 +239,7 @@ function SmallPrint() {
Follow us on GitHub
-
+
Join us on Slack
diff --git a/src/components/Header.jsx b/src/components/Header.jsx
index c9f1c32e..18154dd8 100644
--- a/src/components/Header.jsx
+++ b/src/components/Header.jsx
@@ -73,7 +73,7 @@ export const Header = forwardRef(function Header({ className }, ref) {
API
Learn
Github
- Support
+ Support
diff --git a/src/components/NavigationAPI.jsx b/src/components/NavigationAPI.jsx
index 6c45b0e0..269b8126 100644
--- a/src/components/NavigationAPI.jsx
+++ b/src/components/NavigationAPI.jsx
@@ -48,7 +48,7 @@ export function NavigationAPI({tableOfContents, className}) {
API
Learn
Github
- Support
+ Support
{apiNavigation.map((group, groupIndex) => (
API
Learn
Github
- Support
+ Support
{docsNavigation.map((group, groupIndex) => (
- Make sure to [star us on GitHub](https://github.com/netbirdio/netbird)
-- Follow us [on Twitter](https://twitter.com/netbird)
-- Join our [Slack Channel](https://join.slack.com/t/netbirdio/shared_invite/zt-31rofwmxc-27akKd0Le0vyRpBcwXkP0g)
+- Follow us [on X](https://x.com/netbird)
+- Join our [Slack Channel](/slack-url)
- NetBird [latest release](https://github.com/netbirdio/netbird/releases) on GitHub
diff --git a/src/pages/how-to/add-users-to-your-network.mdx b/src/pages/how-to/add-users-to-your-network.mdx
index 09b87658..d4cd04d6 100644
--- a/src/pages/how-to/add-users-to-your-network.mdx
+++ b/src/pages/how-to/add-users-to-your-network.mdx
@@ -27,7 +27,7 @@ Public domains are the ones of the public email providers like Gmail.
It might happen (unlikely) that the domain classification system didn't classify your company's domain as private.
Our system was unsure about your domain and assigned an unclassified or public category to be on the safe side.
- Just email us at [hello@netbird.io](mailto:hello@netbird.io) or ping us on [Slack](https://join.slack.com/t/netbirdio/shared_invite/zt-31rofwmxc-27akKd0Le0vyRpBcwXkP0g) to fix this.
+ Just email us at [hello@netbird.io](mailto:hello@netbird.io) or ping us on [Slack](/slack-url) to fix this.
## Direct user invites
@@ -104,6 +104,6 @@ Click the `Save` button to save the changes.
- Make sure to [star us on GitHub](https://github.com/netbirdio/netbird)
-- Follow us [on Twitter](https://twitter.com/netbird)
-- Join our [Slack Channel](https://join.slack.com/t/netbirdio/shared_invite/zt-31rofwmxc-27akKd0Le0vyRpBcwXkP0g)
+- Follow us [on X](https://x.com/netbird)
+- Join our [Slack Channel](/slack-url)
- NetBird [latest release](https://github.com/netbirdio/netbird/releases) on GitHub
diff --git a/src/pages/how-to/approve-peers.mdx b/src/pages/how-to/approve-peers.mdx
index 93e977a4..7c46f042 100644
--- a/src/pages/how-to/approve-peers.mdx
+++ b/src/pages/how-to/approve-peers.mdx
@@ -46,5 +46,5 @@ Check the [EDR integrations](/how-to/endpoint-detection-and-response) guide for
- Make sure to [star us on GitHub](https://github.com/netbirdio/netbird)
- Follow us [on X](https://x.com/netbird)
-- Join our [Slack Channel](https://join.slack.com/t/netbirdio/shared_invite/zt-31rofwmxc-27akKd0Le0vyRpBcwXkP0g)
+- Join our [Slack Channel](/slack-url)
- NetBird [latest release](https://github.com/netbirdio/netbird/releases) on GitHub
diff --git a/src/pages/how-to/audit-events-logging.mdx b/src/pages/how-to/audit-events-logging.mdx
index ea9c81b4..1c6ba8d8 100644
--- a/src/pages/how-to/audit-events-logging.mdx
+++ b/src/pages/how-to/audit-events-logging.mdx
@@ -131,6 +131,6 @@ NetBird can stream audit events to your Security Information and Event Managemen
- Make sure to [star us on GitHub](https://github.com/netbirdio/netbird)
-- Follow us [on Twitter](https://twitter.com/netbird)
-- Join our [Slack Channel](https://join.slack.com/t/netbirdio/shared_invite/zt-31rofwmxc-27akKd0Le0vyRpBcwXkP0g)
+- Follow us [on X](https://x.com/netbird)
+- Join our [Slack Channel](/slack-url)
- NetBird [latest release](https://github.com/netbirdio/netbird/releases) on GitHub
diff --git a/src/pages/how-to/configuring-default-routes-for-internet-traffic.mdx b/src/pages/how-to/configuring-default-routes-for-internet-traffic.mdx
index 968c8a7a..7c278500 100644
--- a/src/pages/how-to/configuring-default-routes-for-internet-traffic.mdx
+++ b/src/pages/how-to/configuring-default-routes-for-internet-traffic.mdx
@@ -101,6 +101,6 @@ section for more information.
- Make sure to [star us on GitHub](https://github.com/netbirdio/netbird)
-- Follow us [on Twitter](https://twitter.com/netbird)
-- Join our [Slack Channel](https://join.slack.com/t/netbirdio/shared_invite/zt-31rofwmxc-27akKd0Le0vyRpBcwXkP0g)
+- Follow us [on X](https://x.com/netbird)
+- Join our [Slack Channel](/slack-url)
- NetBird [latest release](https://github.com/netbirdio/netbird/releases) on GitHub
diff --git a/src/pages/how-to/delete-account.mdx b/src/pages/how-to/delete-account.mdx
index 734f761b..16b1b251 100644
--- a/src/pages/how-to/delete-account.mdx
+++ b/src/pages/how-to/delete-account.mdx
@@ -28,5 +28,5 @@ After you delete your account, your session will end, and you will be redirected
- Make sure to [star us on GitHub](https://github.com/netbirdio/netbird)
- Follow us [on X](https://x.com/netbird)
-- Join our [Slack Channel](https://join.slack.com/t/netbirdio/shared_invite/zt-31rofwmxc-27akKd0Le0vyRpBcwXkP0g)
+- Join our [Slack Channel](/slack-url)
- NetBird [latest release](https://github.com/netbirdio/netbird/releases) on GitHub
diff --git a/src/pages/how-to/enable-post-quantum-cryptography.mdx b/src/pages/how-to/enable-post-quantum-cryptography.mdx
index 3aa36cb8..576a736a 100644
--- a/src/pages/how-to/enable-post-quantum-cryptography.mdx
+++ b/src/pages/how-to/enable-post-quantum-cryptography.mdx
@@ -65,6 +65,6 @@ netbird up --enable-rosenpass --rosenpass-permissive
- Make sure to [star us on GitHub](https://github.com/netbirdio/netbird)
-- Follow us [on Twitter](https://twitter.com/netbird)
-- Join our [Slack Channel](https://join.slack.com/t/netbirdio/shared_invite/zt-31rofwmxc-27akKd0Le0vyRpBcwXkP0g)
+- Follow us [on X](https://x.com/netbird)
+- Join our [Slack Channel](/slack-url)
- NetBird [latest release](https://github.com/netbirdio/netbird/releases) on GitHub
diff --git a/src/pages/how-to/enforce-periodic-user-authentication.mdx b/src/pages/how-to/enforce-periodic-user-authentication.mdx
index 154a122b..e2aa0518 100644
--- a/src/pages/how-to/enforce-periodic-user-authentication.mdx
+++ b/src/pages/how-to/enforce-periodic-user-authentication.mdx
@@ -45,6 +45,6 @@ Peers with `Expiration disabled` will be marked with a corresponding label in th
- Make sure to [star us on GitHub](https://github.com/netbirdio/netbird)
-- Follow us [on Twitter](https://twitter.com/netbird)
-- Join our [Slack Channel](https://join.slack.com/t/netbirdio/shared_invite/zt-31rofwmxc-27akKd0Le0vyRpBcwXkP0g)
+- Follow us [on X](https://x.com/netbird)
+- Join our [Slack Channel](/slack-url)
- NetBird [latest release](https://github.com/netbirdio/netbird/releases) on GitHub
\ No newline at end of file
diff --git a/src/pages/how-to/getting-started.mdx b/src/pages/how-to/getting-started.mdx
index 57cb3002..54aac320 100644
--- a/src/pages/how-to/getting-started.mdx
+++ b/src/pages/how-to/getting-started.mdx
@@ -125,5 +125,5 @@ Try creating a [network access policy](/how-to/manage-network-access) to control
- Star us on [GitHub](https://github.com/netbirdio/netbird)
- Follow us [on X](https://x.com/netbird)
-- Join our [Slack Channel](https://join.slack.com/t/netbirdio/shared_invite/zt-31rofwmxc-27akKd0Le0vyRpBcwXkP0g)
+- Join our [Slack Channel](/slack-url)
- NetBird release page on GitHub: [releases](https://github.com/netbirdio/netbird/releases/latest)
diff --git a/src/pages/how-to/kubernetes-operator.mdx b/src/pages/how-to/kubernetes-operator.mdx
index fd709315..2cb1855d 100644
--- a/src/pages/how-to/kubernetes-operator.mdx
+++ b/src/pages/how-to/kubernetes-operator.mdx
@@ -344,6 +344,6 @@ With this setup, other peers in your NetBird network can reach these pods using
- Make sure to [star us on GitHub](https://github.com/netbirdio/netbird)
-- Follow us [on Twitter](https://twitter.com/netbird)
-- Join our [Slack Channel](https://join.slack.com/t/netbirdio/shared_invite/zt-31rofwmxc-27akKd0Le0vyRpBcwXkP0g)
+- Follow us [on X](https://x.com/netbird)
+- Join our [Slack Channel](/slack-url)
- NetBird [latest release](https://github.com/netbirdio/netbird/releases) on GitHub
diff --git a/src/pages/how-to/lazy-connection.mdx b/src/pages/how-to/lazy-connection.mdx
index 5b7a31f6..be8efa47 100644
--- a/src/pages/how-to/lazy-connection.mdx
+++ b/src/pages/how-to/lazy-connection.mdx
@@ -80,6 +80,6 @@ Setting disabled:
- Make sure to [star us on GitHub](https://github.com/netbirdio/netbird)
-- Follow us [on Twitter](https://twitter.com/netbird)
-- Join our [Slack Channel](https://join.slack.com/t/netbirdio/shared_invite/zt-31rofwmxc-27akKd0Le0vyRpBcwXkP0g)
+- Follow us [on X](https://x.com/netbird)
+- Join our [Slack Channel](/slack-url)
- NetBird [latest release](https://github.com/netbirdio/netbird/releases) on GitHub
diff --git a/src/pages/how-to/manage-dns-in-your-network.mdx b/src/pages/how-to/manage-dns-in-your-network.mdx
index 142b1335..656385eb 100644
--- a/src/pages/how-to/manage-dns-in-your-network.mdx
+++ b/src/pages/how-to/manage-dns-in-your-network.mdx
@@ -158,6 +158,6 @@ resolvectl query peer-a.netbird.cloud
- Make sure to [star us on GitHub](https://github.com/netbirdio/netbird)
-- Follow us [on Twitter](https://twitter.com/netbird)
-- Join our [Slack Channel](https://join.slack.com/t/netbirdio/shared_invite/zt-31rofwmxc-27akKd0Le0vyRpBcwXkP0g)
+- Follow us [on X](https://x.com/netbird)
+- Join our [Slack Channel](/slack-url)
- NetBird [latest release](https://github.com/netbirdio/netbird/releases) on GitHub
diff --git a/src/pages/how-to/manage-posture-checks.mdx b/src/pages/how-to/manage-posture-checks.mdx
index 3ac45c62..dee8002f 100644
--- a/src/pages/how-to/manage-posture-checks.mdx
+++ b/src/pages/how-to/manage-posture-checks.mdx
@@ -133,6 +133,6 @@ Following these steps, you can effectively implement and manage NetBird's Postur
- Make sure to [star us on GitHub](https://github.com/netbirdio/netbird)
-- Follow us [on Twitter](https://twitter.com/netbird)
-- Join our [Slack Channel](https://join.slack.com/t/netbirdio/shared_invite/zt-31rofwmxc-27akKd0Le0vyRpBcwXkP0g)
+- Follow us [on X](https://x.com/netbird)
+- Join our [Slack Channel](/slack-url)
- NetBird [latest release](https://github.com/netbirdio/netbird/releases) on GitHub
\ No newline at end of file
diff --git a/src/pages/how-to/multi-factor-authentication.mdx b/src/pages/how-to/multi-factor-authentication.mdx
index d30d70fc..93c1a761 100644
--- a/src/pages/how-to/multi-factor-authentication.mdx
+++ b/src/pages/how-to/multi-factor-authentication.mdx
@@ -59,6 +59,6 @@ This will reset MFA for the user, and they will need to set it up again during t
- Make sure to [star us on GitHub](https://github.com/netbirdio/netbird)
-- Follow us [on Twitter](https://twitter.com/netbird)
-- Join our [Slack Channel](https://join.slack.com/t/netbirdio/shared_invite/zt-31rofwmxc-27akKd0Le0vyRpBcwXkP0g)
+- Follow us [on X](https://x.com/netbird)
+- Join our [Slack Channel](/slack-url)
- NetBird [latest release](https://github.com/netbirdio/netbird/releases) on GitHub
\ No newline at end of file
diff --git a/src/pages/how-to/networks.mdx b/src/pages/how-to/networks.mdx
index 2725b9c4..230353de 100644
--- a/src/pages/how-to/networks.mdx
+++ b/src/pages/how-to/networks.mdx
@@ -114,6 +114,6 @@ You can enable DNS resolution on the routing peer by accessing your account `Set
- Make sure to [star us on GitHub](https://github.com/netbirdio/netbird)
-- Follow us [on Twitter](https://twitter.com/netbird)
-- Join our [Slack Channel](https://join.slack.com/t/netbirdio/shared_invite/zt-31rofwmxc-27akKd0Le0vyRpBcwXkP0g)
+- Follow us [on X](https://x.com/netbird)
+- Join our [Slack Channel](/slack-url)
- NetBird [latest release](https://github.com/netbirdio/netbird/releases) on GitHub
diff --git a/src/pages/how-to/report-bug-issues.mdx b/src/pages/how-to/report-bug-issues.mdx
index 976d8bd6..4f7b9f65 100644
--- a/src/pages/how-to/report-bug-issues.mdx
+++ b/src/pages/how-to/report-bug-issues.mdx
@@ -1,9 +1,9 @@
# Report bugs and issues
NetBird offers different ways to report bugs and issues. For prompt and effective assistance, please provide detailed information as outlined in our bug/issue [reporting template](#reporting-template).
-For cloud users, you can report bugs and issues via email by sending an email to [support@netbird.io](mailto:support@netbird.io), via [Github issues](https://github.com/netbirdio/netbird/issues/new/choose) or by joining our [Slack Channel](https://join.slack.com/t/netbirdio/shared_invite/zt-31rofwmxc-27akKd0Le0vyRpBcwXkP0g).
+For cloud users, you can report bugs and issues via email by sending an email to [support@netbird.io](mailto:support@netbird.io), via [Github issues](https://github.com/netbirdio/netbird/issues/new/choose) or by joining our [Slack Channel](/slack-url).
-For on-premise users, you can report bugs and issues via [Github issues](https://github.com/netbirdio/netbird/issues/new/choose) or by joining our [Slack Channel](https://join.slack.com/t/netbirdio/shared_invite/zt-31rofwmxc-27akKd0Le0vyRpBcwXkP0g).
+For on-premise users, you can report bugs and issues via [Github issues](https://github.com/netbirdio/netbird/issues/new/choose) or by joining our [Slack Channel](/slack-url).
## Reporting Template
When reporting bugs and issues, please ensure you provide the following information:
diff --git a/src/pages/how-to/resolve-overlapping-routes.mdx b/src/pages/how-to/resolve-overlapping-routes.mdx
index 1240a2d4..c78e8375 100644
--- a/src/pages/how-to/resolve-overlapping-routes.mdx
+++ b/src/pages/how-to/resolve-overlapping-routes.mdx
@@ -88,6 +88,6 @@ This applies not only to the currently available routes but also to any routes t
- Make sure to [star us on GitHub](https://github.com/netbirdio/netbird)
-- Follow us [on Twitter](https://twitter.com/netbird)
-- Join our [Slack Channel](https://join.slack.com/t/netbirdio/shared_invite/zt-31rofwmxc-27akKd0Le0vyRpBcwXkP0g)
+- Follow us [on X](https://x.com/netbird)
+- Join our [Slack Channel](/slack-url)
- NetBird [latest release](https://github.com/netbirdio/netbird/releases) on GitHub
diff --git a/src/pages/how-to/routing-traffic-to-multiple-resources.mdx b/src/pages/how-to/routing-traffic-to-multiple-resources.mdx
index 975afc0a..447ab3be 100644
--- a/src/pages/how-to/routing-traffic-to-multiple-resources.mdx
+++ b/src/pages/how-to/routing-traffic-to-multiple-resources.mdx
@@ -106,6 +106,6 @@ With the steps above, we created resources that allow different levels of access
- Make sure to [star us on GitHub](https://github.com/netbirdio/netbird)
-- Follow us [on Twitter](https://twitter.com/netbird)
-- Join our [Slack Channel](https://join.slack.com/t/netbirdio/shared_invite/zt-31rofwmxc-27akKd0Le0vyRpBcwXkP0g)
+- Follow us [on X](https://x.com/netbird)
+- Join our [Slack Channel](/slack-url)
- NetBird [latest release](https://github.com/netbirdio/netbird/releases) on GitHub
diff --git a/src/pages/how-to/routing-traffic-to-private-networks.mdx b/src/pages/how-to/routing-traffic-to-private-networks.mdx
index d2b384a4..9ba5a00e 100644
--- a/src/pages/how-to/routing-traffic-to-private-networks.mdx
+++ b/src/pages/how-to/routing-traffic-to-private-networks.mdx
@@ -216,5 +216,5 @@ This way, devices that don't have the agent installed can communicate with your
- Make sure to [star us on GitHub](https://github.com/netbirdio/netbird)
- Follow us [on X](https://x.com/netbird)
-- Join our [Slack Channel](https://join.slack.com/t/netbirdio/shared_invite/zt-31rofwmxc-27akKd0Le0vyRpBcwXkP0g)
+- Join our [Slack Channel](/slack-url)
- NetBird [latest release](https://github.com/netbirdio/netbird/releases) on GitHub
diff --git a/src/pages/how-to/secure-remote-webserver-access.mdx b/src/pages/how-to/secure-remote-webserver-access.mdx
index 34893002..5dce7726 100644
--- a/src/pages/how-to/secure-remote-webserver-access.mdx
+++ b/src/pages/how-to/secure-remote-webserver-access.mdx
@@ -166,6 +166,6 @@ This straightforward test confirms your successful implementation of a secure, f
- Make sure to [star us on GitHub](https://github.com/netbirdio/netbird)
-- Follow us [on Twitter](https://twitter.com/netbird)
-- Join our [Slack Channel](https://join.slack.com/t/netbirdio/shared_invite/zt-31rofwmxc-27akKd0Le0vyRpBcwXkP0g)
+- Follow us [on X](https://x.com/netbird)
+- Join our [Slack Channel](/slack-url)
- NetBird [latest release](https://github.com/netbirdio/netbird/releases) on GitHub
diff --git a/src/pages/ipa/guides/errors.mdx b/src/pages/ipa/guides/errors.mdx
index d1eb4fa9..4664edde 100644
--- a/src/pages/ipa/guides/errors.mdx
+++ b/src/pages/ipa/guides/errors.mdx
@@ -26,7 +26,7 @@ Here is a list of the different categories of status codes returned by the NetBi
A 4xx status code indicates a client error - those are mostly related to missing permissions or invalid parameters inside the request.
- A 5xx status code indicates a server error - in this case please reach out to us via [Slack](https://join.slack.com/t/netbirdio/shared_invite/zt-31rofwmxc-27akKd0Le0vyRpBcwXkP0g) or [GitHub](https://github.com/netbirdio/netbird/issues).
+ A 5xx status code indicates a server error - in this case please reach out to us via [Slack](/slack-url) or [GitHub](https://github.com/netbirdio/netbird/issues).
diff --git a/src/pages/selfhosted/self-hosted-vs-cloud-netbird.mdx b/src/pages/selfhosted/self-hosted-vs-cloud-netbird.mdx
index 7e928352..88bc49cc 100644
--- a/src/pages/selfhosted/self-hosted-vs-cloud-netbird.mdx
+++ b/src/pages/selfhosted/self-hosted-vs-cloud-netbird.mdx
@@ -64,5 +64,5 @@ your critical network infrastructure.
- Make sure to [star us on GitHub](https://github.com/netbirdio/netbird)
- Follow us [on X](https://x.com/netbird)
-- Join our [Slack Channel](https://join.slack.com/t/netbirdio/shared_invite/zt-31rofwmxc-27akKd0Le0vyRpBcwXkP0g)
+- Join our [Slack Channel](/slack-url)
- NetBird [latest release](https://github.com/netbirdio/netbird/releases) on GitHub
diff --git a/src/pages/selfhosted/selfhosted-guide.mdx b/src/pages/selfhosted/selfhosted-guide.mdx
index dba3a580..e2d0e735 100644
--- a/src/pages/selfhosted/selfhosted-guide.mdx
+++ b/src/pages/selfhosted/selfhosted-guide.mdx
@@ -241,8 +241,8 @@ To upgrade NetBird to the latest version, you need to review the [release notes]
## Get in touch
-Feel free to ping us on [Slack](https://join.slack.com/t/netbirdio/shared_invite/zt-31rofwmxc-27akKd0Le0vyRpBcwXkP0g) if you have any questions
+Feel free to ping us on [Slack](/slack-url) if you have any questions
- NetBird managed version: [https://app.netbird.io](https://app.netbird.io)
- Make sure to [star us on GitHub](https://github.com/netbirdio/netbird)
-- Follow us [on Twitter](https://twitter.com/netbird)
+- Follow us [on X](https://x.com/netbird)
diff --git a/src/pages/selfhosted/selfhosted-quickstart.mdx b/src/pages/selfhosted/selfhosted-quickstart.mdx
index e5cbe3dd..3926cfa5 100644
--- a/src/pages/selfhosted/selfhosted-quickstart.mdx
+++ b/src/pages/selfhosted/selfhosted-quickstart.mdx
@@ -111,8 +111,8 @@ rm -f docker-compose.yml Caddyfile zitadel.env dashboard.env machinekey/zitadel-
## Get in touch
-Feel free to ping us on [Slack](https://join.slack.com/t/netbirdio/shared_invite/zt-31rofwmxc-27akKd0Le0vyRpBcwXkP0g) if you have any questions
+Feel free to ping us on [Slack](/slack-url) if you have any questions
- NetBird managed version: [https://app.netbird.io](https://app.netbird.io)
- Make sure to [star us on GitHub](https://github.com/netbirdio/netbird)
-- Follow us [on Twitter](https://twitter.com/netbird)
+- Follow us [on X](https://x.com/netbird)