Skip to content

Commit 68ee57a

Browse files
committed
fix
1 parent 9e1a1f7 commit 68ee57a

2 files changed

Lines changed: 12 additions & 3 deletions

File tree

apps/codebattle/assets/js/widgets/pages/game/BackToEventButton.jsx

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,17 @@ import i18next from "i18next";
44

55
function BackToEventButton() {
66
const eventUrl = "/";
7+
const supportUrl = "https://t.me/+Z0_UGvNt_yE4ODcy";
78

89
return (
9-
<a className="btn btn-secondary cb-btn-secondary btn-block cb-rounded" href={eventUrl}>
10-
{i18next.t("Back to event")}
11-
</a>
10+
<>
11+
<a className="btn btn-secondary cb-btn-secondary btn-block cb-rounded" href={supportUrl}>
12+
{i18next.t("Back to event")}
13+
</a>
14+
<a className="btn btn-secondary cb-btn-secondary btn-block cb-rounded" href={eventUrl}>
15+
{i18next.t("Back to event")}
16+
</a>
17+
</>
1218
);
1319
}
1420

apps/codebattle/assets/js/widgets/pages/groupTournament/Header.jsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,9 @@ function Header({ name, status, groupTournament }) {
151151
>
152152
{i18n.t(badge.labelKey)}
153153
</span>
154+
<a className="btn btn-outline-light rounded-pill px-4" href="https://t.me/+Z0_UGvNt_yE4ODcy">
155+
{i18n.t("Support")}
156+
</a>
154157
<a className="btn btn-outline-light rounded-pill px-4" href="/">
155158
{i18n.t("Back to event")}
156159
</a>

0 commit comments

Comments
 (0)