File size: 8,984 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
<!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>

    <!-- News Filters -->
    <section class="mb-8">
        <div class="flex flex-wrap gap-4 justify-center">
            <button class="cyber-button-primary px-6 py-2 active-filter">
                Все
            </button>
            <button class="cyber-button-secondary px-6 py-2">
                AI & ML
            </button>
            <button class="cyber-button-secondary px-6 py-2">
                Web3 & Блокчейн
            </button>
            <button class="cyber-button-secondary px-6 py-2">
                Кибербезопасность
            </button>
            <button class="cyber-button-secondary px-6 py-2">
                Квантовые вычисления
            </button>
        </div>
    </section>

    <!-- News Grid -->
    <section class="mb-16">
        <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">Новый алгоритм позволяет достичь квантового превосходства на доступных системах</p>
                <div class="flex justify-between items-center text-sm text-gray-500">
                    <span>Сегодня</span>
                    <span>Михаил Малышев</span>
                </div>
                <a href="/news/quantum-breakthrough" class="cyber-link mt-4">Читать →</a>
            </div>

            <div class="cyber-card group">
                <div class="cyber-card-header">
                    <i data-feather="brain" class="text-cyber-secondary"></i>
                    <h3 class="text-xl font-cyber">Нейросети в медицине</h3>
                </div>
                <p class="text-gray-400 mb-4">AI диагностирует заболевания с точностью 98%</p>
                <div class="flex justify-between items-center text-sm text-gray-500">
                    <span>Вчера</span>
                    <span>Михаил Малышев</span>
                </div>
                <a href="/news/ai-medicine" class="cyber-link mt-4">Читать →</a>
            </div>

            <div class="cyber-card group">
                <div class="cyber-card-header">
                    <i data-feather="shield" class="text-cyber-accent"></i>
                    <h3 class="text-xl font-cyber">Новые угрозы кибербезопасности</h3>
                </div>
                <p class="text-gray-400 mb-4">Анализ последних кибератак и методы защиты</p>
                <div class="flex justify-between items-center text-sm text-gray-500">
                    <span>2 дня назад</span>
                    <span>Михаил Малышев</span>
                </div>
                <a href="/news/cybersecurity-threats" class="cyber-link mt-4">Читать →</a>
            </div>

            <div class="cyber-card group">
                <div class="cyber-card-header">
                    <i data-feather="cloud" class="text-cyber-primary"></i>
                    <h3 class="text-xl font-cyber">Облачные технологии 2024</h3>
                </div>
                <p class="text-gray-400 mb-4">Тренды и перспективы развития облачных платформ</p>
                <div class="flex justify-between items-center text-sm text-gray-500">
                    <span>3 дня назад</span>
                    <span>Михаил Малышев</span>
                </div>
                <a href="/news/cloud-trends" class="cyber-link mt-4">Читать →</a>
            </div>

            <div class="cyber-card group">
                <div class="cyber-card-header">
                    <i data-feather="code" class="text-cyber-secondary"></i>
                    <h3 class="text-xl font-cyber">WebAssembly будущее</h3>
                </div>
                <p class="text-gray-400 mb-4">Как WASM меняет веб-разработку и не только</p>
                <div class="flex justify-between items-center text-sm text-gray-500">
                    <span>4 дня назад</span>
                    <span>Михаил Малышев</span>
                </div>
                <a href="/news/webassembly-future" class="cyber-link mt-4">Читать →</a>
            </div>

            <div class="cyber-card group">
                <div class="cyber-card-header">
                    <i data-feather="database" class="text-cyber-accent"></i>
                    <h3 class="text-xl font-cyber">Векторные базы данных</h3>
                </div>
                <p class="text-gray-400 mb-4">Новые подходы к хранению и обработке семантических данных</p>
                <div class="flex justify-between items-center text-sm text-gray-500">
                    <span>5 дней назад</span>
                    <span>Михаил Малышев</span>
                </div>
                <a href="/news/vector-databases" class="cyber-link mt-4">Читать →</a>
            </div>
        </div>
    </section>

    <!-- Newsletter Subscription -->
    <section class="mb-16">
        <div class="cyber-card text-center">
            <h3 class="text-2xl font-cyber mb-4">Подпишитесь на обновления</h3>
            <p class="text-gray-400 mb-6">Получайте самые важные технологические новости первыми</p>
            <div class="flex flex-col sm:flex-row gap-4 justify-center max-w-md mx-auto">
                <input type="email" placeholder="Ваш email" class="px-4 py-2 bg-cyber-gray border border-cyber-secondary rounded-lg text-white">
                <button class="cyber-button-primary px-6 py-2">
                    Подписаться
                </button>
            </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>