File size: 9,183 Bytes
51d89b3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
<!DOCTYPE html>
<html lang="ru" class="dark">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Обучение - Singularity Nexus</title>
    <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
    <link rel="stylesheet" href="style.css">
    <script src="https://cdn.tailwindcss.com"></script>
    <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
    <script src="https://unpkg.com/feather-icons"></script>
    <script>
        tailwind.config = {
            darkMode: 'class',
            theme: {
                extend: {
                    colors: {
                        cyber: {
                            primary: '#00ff88',
                            secondary: '#00a2ff',
                            accent: '#ff0088',
                            dark: '#0a0a0f',
                            darker: '#050508',
                            gray: '#1a1a2e'
                        }
                    },
                    fontFamily: {
                        'cyber': ['Orbitron', 'monospace'],
                        'main': ['Inter', 'sans-serif']
                    }
                }
            }
        }
    </script>
    <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Orbitron:wght@400;500;700;900&display=swap" rel="stylesheet">
</head>
<body class="bg-cyber-dark text-white font-main min-h-screen">
    <custom-navbar></custom-navbar>
    
    <main class="container mx-auto px-4 py-8">
        <!-- Page Header -->
        <section class="mb-12">
            <div class="text-center">
                <h1 class="text-4xl md:text-6xl font-cyber font-bold bg-gradient-to-r from-cyber-primary to-cyber-secondary bg-clip-text text-transparent cyber-glow">
                ОБУЧЕНИЕ
            </h1>
            <p class="text-xl text-gray-300 mt-4 max-w-2xl mx-auto">
                Глубокие погружения в технологии будущего и практические навыки
            </p>
        </div>
    </section>

    <!-- Course Categories -->
    <section class="mb-12">
        <h2 class="text-3xl font-cyber mb-8 text-center">Категории курсов</h2>
        <div class="grid grid-cols-2 md:grid-cols-4 gap-4">
            <div class="cyber-card text-center group cursor-pointer">
                <i data-feather="brain" class="w-12 h-12 mx-auto mb-4 text-cyber-primary"></i>
                <h3 class="font-cyber">Искусственный интеллект</h3>
            </div>

            <div class="cyber-card text-center group cursor-pointer">
                <i data-feather="shield" class="w-12 h-12 mx-auto mb-4 text-cyber-secondary"></i>
                <h3 class="font-cyber">Кибербезопасность</h3>
            </div>

            <div class="cyber-card text-center group cursor-pointer">
                <i data-feather="database" class="w-12 h-12 mx-auto mb-4 text-cyber-accent"></i>
                <h3 class="font-cyber">Базы данных</h3>
            </div>

            <div class="cyber-card text-center group cursor-pointer">
                <i data-feather="cloud" class="w-12 h-12 mx-auto mb-4 text-cyber-primary"></i>
                <h3 class="font-cyber">Облачные технологии</h3>
            </div>
        </div>
    </section>

    <!-- Featured Courses -->
    <section class="mb-16">
        <h2 class="text-3xl font-cyber mb-8">Рекомендуемые курсы</h2>
        <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
            <div class="cyber-card group">
                <div class="cyber-card-header">
                    <i data-feather="cpu" class="text-cyber-primary"></i>
                    <h3 class="text-xl font-cyber">Машинное обучение с нуля</h3>
                </div>
                <p class="text-gray-400 mb-4">Полный курс по основам ML и практическим применениям</p>
                <div class="flex justify-between items-center mb-4">
                    <span class="text-cyber-primary font-bold">Бесплатно</span>
                    <div class="flex items-center text-sm text-gray-500">
                        <i data-feather="clock" class="w-4 h-4 mr-1"></i>
                        24 часа
                    </div>
                </div>
                <div class="flex justify-between items-center">
                    <div class="flex items-center">
                        <i data-feather="users" class="w-4 h-4 mr-1"></i>
                        1,245 студентов
                </div>
                <a href="/learning/ml-fundamentals" class="cyber-link mt-4">Начать обучение →</a>
            </div>

            <div class="cyber-card group">
                <div class="cyber-card-header">
                    <i data-feather="lock" class="text-cyber-secondary"></i>
                    <h3 class="text-xl font-cyber">Криптография и безопасность</h3>
                </div>
                <p class="text-gray-400 mb-4">Современные методы шифрования и защиты данных</p>
                <div class="flex justify-between items-center mb-4">
                    <span class="text-cyber-secondary font-bold">Премиум</span>
                    <div class="flex items-center text-sm text-gray-500">
                        <i data-feather="clock" class="w-4 h-4 mr-1"></i>
                        36 часов
                    </div>
                </div>
                <div class="flex justify-between items-center">
                    <div class="flex items-center">
                        <i data-feather="users" class="w-4 h-4 mr-1"></i>
                        893 студента
                </div>
                <a href="/learning/cryptography" class="cyber-link mt-4">Начать обучение →</a>
            </div>

            <div class="cyber-card group">
                <div class="cyber-card-header">
                    <i data-feather="code" class="text-cyber-accent"></i>
                    <h3 class="text-xl font-cyber">Web3 и блокчейн разработка</h3>
                </div>
                <p class="text-gray-400 mb-4">Создание децентрализованных приложений на Ethereum</p>
                <div class="flex justify-between items-center mb-4">
                    <span class="text-cyber-accent font-bold">Премиум</span>
                    <div class="flex items-center text-sm text-gray-500">
                        <i data-feather="clock" class="w-4 h-4 mr-1"></i>
                        42 часа
                    </div>
                </div>
                <div class="flex justify-between items-center">
                    <div class="flex items-center">
                        <i data-feather="users" class="w-4 h-4 mr-1"></i>
                        567 студентов
                </div>
                <a href="/learning/web3-development" class="cyber-link mt-4">Начать обучение →</a>
            </div>
        </div>
    </section>

    <!-- Learning Paths -->
    <section class="mb-16">
        <h2 class="text-3xl font-cyber mb-8">Пути обучения</h2>
        <div class="grid grid-cols-1 md:grid-cols-2 gap-6">
            <div class="cyber-card">
                <h3 class="text-xl font-cyber mb-4 text-cyber-primary">Data Scientist</h3>
            <ul class="space-y-2 text-gray-400">
            <li>✓ Математика для Data Science</li>
            <li>✓ Python и анализ данных</li>
            <li>✓ Машинное обучение</li>
            <li>✓ Глубокое обучение</li>
            <li>✓ MLOps и развертывание</li>
        </ul>
        <a href="/learning/data-science-path" class="cyber-link mt-4">Выбрать путь →</a>
    </div>

    <div class="cyber-card">
        <h3 class="text-xl font-cyber mb-4 text-cyber-secondary">Cybersecurity Engineer</h3>
        <ul class="space-y-2 text-gray-400">
        <li>✓ Основы кибербезопасности</li>
        <li>✓ Сетевая безопасность</li>
        <li>✓ Криптография</li>
        <li>✓ Пентестинг и аудит</li>
    </ul>
    <a href="/learning/cybersecurity-path" class="cyber-link mt-4">Выбрать путь →</a>
</div>
</div>
</section>
</main>

<custom-footer></custom-footer>

<!-- AI Assistant -->
<ai-assistant></ai-assistant>

<!-- Component Scripts -->
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="components/ai-assistant.js"></script>

<!-- Main Script -->
<script src="script.js"></script>

<script>
    feather.replace();
    document.addEventListener('DOMContentLoaded', function() {
        initializeAIAssistant();
    });
</script>
</body>
</html>