Skip to content

Commit 17b891b

Browse files
committed
Update Navigation.jsx
1 parent a3913cc commit 17b891b

File tree

1 file changed

+38
-10
lines changed

1 file changed

+38
-10
lines changed

src/components/Navigation.jsx

Lines changed: 38 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -226,16 +226,44 @@ export const navigation = [
226226
{title: 'SSE', href: '/http/SSE'},
227227
],
228228
},
229-
// {
230-
// title: 'Resources',
231-
// links: [
232-
// { title: 'Contacts', href: '/contacts' },
233-
// { title: 'Conversations', href: '/conversations' },
234-
// { title: 'Messages', href: '/messages' },
235-
// { title: 'Groups', href: '/groups' },
236-
// { title: 'Attachments', href: '/attachments' },
237-
// ],
238-
// },
229+
{
230+
title: 'Архитектура',
231+
links: [
232+
{title: 'Обзор архитектуры', href: '/architecture/overview'},
233+
{title: 'Модель процессов', href: '/architecture/process-model'},
234+
{title: 'Событийные циклы', href: '/architecture/event-loops'},
235+
{title: 'Обработка соединений', href: '/architecture/connections'},
236+
{title: 'Протоколы', href: '/architecture/protocols'},
237+
{title: 'Производительность', href: '/architecture/performance'},
238+
{title: 'Безопасность', href: '/architecture/security'},
239+
],
240+
},
241+
{
242+
title: 'API Reference',
243+
links: [
244+
{title: 'Server', href: '/api/server'},
245+
{title: 'Connection', href: '/api/connection'},
246+
{title: 'Timer', href: '/api/timer'},
247+
],
248+
},
249+
{
250+
title: 'Продвинутые темы',
251+
links: [
252+
{title: 'Масштабирование', href: '/advanced/scaling'},
253+
{title: 'Развертывание', href: '/advanced/deployment'},
254+
{title: 'Решение проблем', href: '/advanced/troubleshooting'},
255+
{title: 'Лучшие практики', href: '/advanced/best-practices'},
256+
],
257+
},
258+
{
259+
title: 'Исследования',
260+
links: [
261+
{title: 'Обзор исследований', href: '/research'},
262+
{title: 'Научные концепции', href: '/research/concepts'},
263+
{title: 'Бенчмарки', href: '/research/benchmarks'},
264+
{title: 'Сравнение', href: '/research/comparison'},
265+
],
266+
},
239267
]
240268

241269
export function Navigation(props) {

0 commit comments

Comments
 (0)