Skip to content

Commit c42df08

Browse files
committed
feat: Добавить страницу Telegram ↔ Discord Bridge с функционалом управления привязками и голосами TTS
1 parent 6972f33 commit c42df08

File tree

9 files changed

+1110
-0
lines changed

9 files changed

+1110
-0
lines changed

src/Site/Pages/Layout/Header/Header.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ const Header: React.FC = () => {
9090
{ label: "RootState", path: "/root-state" },
9191
{ label: "Твич награды", path: "/twitch-rewards" },
9292
{ label: "Автосообщения", path: "/auto-messages" },
93+
{ label: "Telegram ↔ Discord Bridge", path: "/telegram-discord-bridge" },
9394
];
9495

9596
const handleDropdownToggle = (dropdownName: string) => {
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
.page {
2+
min-height: 100vh;
3+
padding: 2rem 0;
4+
}
5+
6+
.grid {
7+
display: grid;
8+
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
9+
gap: 0.75rem;
10+
}
11+
12+
.tableWrap {
13+
overflow-x: auto;
14+
}
15+
16+
.actions {
17+
display: flex;
18+
gap: 0.5rem;
19+
flex-wrap: wrap;
20+
}
21+
22+
.searchBar {
23+
max-width: 320px;
24+
}

0 commit comments

Comments
 (0)