diff --git a/frontend/src/app/notification/page.tsx b/frontend/src/app/notification/page.tsx index 5a55957..b5bb591 100644 --- a/frontend/src/app/notification/page.tsx +++ b/frontend/src/app/notification/page.tsx @@ -1,6 +1,6 @@ import { Anchor, Group, Stack, Text, Title } from "@mantine/core"; import { FC } from "react"; -import { DISCORD_CHANNEL_URL, X_ACCOUNT_URL } from "../../utils/links"; +import { TELEGRAM_CHANNEL_URL, X_ACCOUNT_URL } from "../../utils/links"; const WordsOfCaution: FC = () => { return ( @@ -35,8 +35,8 @@ const WordsOfCaution: FC = () => { Feel free to explore, ask questions, and provide feedback on our{" "} - - Discord channel + + Telegram group {" "} or message us on our{" "} diff --git a/frontend/src/utils/links.tsx b/frontend/src/utils/links.tsx index 43245f2..617e38c 100644 --- a/frontend/src/utils/links.tsx +++ b/frontend/src/utils/links.tsx @@ -1,8 +1,7 @@ export const GH_REPO_URL = "https://github.com/crypto-bug-hunters/bug-buster"; export const GH_MAIN_BRANCH = "main"; export const GH_README_URL = `${GH_REPO_URL}/blob/${GH_MAIN_BRANCH}/README.md`; -export const DISCORD_CHANNEL_URL = - "https://discord.com/channels/600597137524391947/1166042819782258788"; +export const TELEGRAM_CHANNEL_URL = "https://t.me/+G_CPMEhCHC04MzA5"; export const X_ACCOUNT_URL = "https://x.com/BugBusterApp"; export const GOOGLE_BOUNTY_CREATION_FORM_URL = "https://forms.gle/h4EePFXG41Zwv48a7";