From cbe511e1f845f7eeb83ebbcacbf7a3cfcdf71f4d Mon Sep 17 00:00:00 2001 From: Daniel Dias Date: Tue, 26 Dec 2023 20:18:48 -0300 Subject: [PATCH] chore: move community links to slack --- web/src/components/Header/HeaderMenu.tsx | 8 ++++---- web/src/constants/common.ts | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/web/src/components/Header/HeaderMenu.tsx b/web/src/components/Header/HeaderMenu.tsx index a453a35..3c230d9 100644 --- a/web/src/components/Header/HeaderMenu.tsx +++ b/web/src/components/Header/HeaderMenu.tsx @@ -1,4 +1,4 @@ -import { DOCUMENTATION_URL, GITHUB_URL, DISCORD_URL } from '../../constants/common'; +import { DOCUMENTATION_URL, GITHUB_URL, COMMUNITY_SLACK_URL } from '../../constants/common'; import * as S from './Header.styled'; interface IProps { @@ -27,10 +27,10 @@ export const HeaderMenu = ({ pathname }: IProps) => { ), }, { - key: 'discord', + key: 'slack', label: ( - - Discord + + Slack ), }, diff --git a/web/src/constants/common.ts b/web/src/constants/common.ts index 40b983e..2ba0b47 100644 --- a/web/src/constants/common.ts +++ b/web/src/constants/common.ts @@ -1,4 +1,4 @@ export const DOCUMENTATION_URL = 'https://docs.tracetest.io'; export const GITHUB_URL = 'https://github.com/kubeshop/tracetest'; export const GITHUB_ISSUES_URL = 'https://github.com/kubeshop/tracetest/issues/new/choose'; -export const DISCORD_URL = 'https://discord.gg/6zupCZFQbe'; +export const COMMUNITY_SLACK_URL = 'https://dub.sh/tracetest-community'; \ No newline at end of file