mbmal's picture
мне нужен портал проекта Технозаметки Малышева (канал в телеграме @tsingular)
29e58e3 verified
raw
history blame
5.98 kB
<!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">
<!-- Hero Section -->
<section class="mb-16">
<div class="text-center">
<div class="cyber-glow mb-6">
<h1 class="text-5xl md:text-7xl font-cyber font-bold bg-gradient-to-r from-cyber-primary to-cyber-secondary bg-clip-text text-transparent">
SINGULARITY NEXUS
</h1>
</div>
<p class="text-xl md:text-2xl text-gray-300 mb-8 max-w-3xl mx-auto">
Портал технологических инсайтов и цифровых трансформаций от Алексея Малышева
</p>
<div class="flex flex-wrap justify-center gap-4">
<a href="/news" class="cyber-button-primary px-8 py-3">
<i data-feather="zap" class="inline mr-2"></i>
Новости
</a>
<a href="/learning" class="cyber-button-secondary px-8 py-3">
<i data-feather="book-open" class="inline mr-2"></i>
Обучение
</a>
<a href="/resources" class="cyber-button-accent px-8 py-3">
<i data-feather="link" class="inline mr-2"></i>
Ресурсы
</a>
</div>
</div>
</section>
<!-- Featured Content Grid -->
<section class="mb-16">
<h2 class="text-3xl font-cyber mb-8 text-center">Фокус внимания</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="trending-up" class="text-cyber-primary"></i>
<h3 class="text-xl font-cyber">Актуальные новости</h3>
</div>
<p class="text-gray-400 mb-4">Свежие технологические тренды и инсайты</p>
<a href="/news" class="cyber-link">Исследовать →</a>
</div>
<div class="cyber-card group">
<div class="cyber-card-header">
<i data-feather="graduation-cap" class="text-cyber-secondary"></i>
<h3 class="text-xl font-cyber">Образовательные материалы</h3>
</div>
<p class="text-gray-400 mb-4">Глубокие погружения в технологии будущего</p>
<a href="/learning" class="cyber-link">Учиться →</a>
</div>
<div class="cyber-card group">
<div class="cyber-card-header">
<i data-feather="cpu" class="text-cyber-accent"></i>
<h3 class="text-xl font-cyber">Демо проекты</h3>
</div>
<p class="text-gray-400 mb-4">Интерактивные примеры и прототипы</p>
<a href="/demos" class="cyber-link">Тестировать →</a>
</div>
</div>
</section>
<!-- Latest Updates -->
<section class="mb-16">
<h2 class="text-3xl font-cyber mb-8">Последние обновления</h2>
<div id="latest-updates" class="cyber-timeline">
<!-- Updates will be loaded dynamically -->
</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();
// Initialize AI assistant
document.addEventListener('DOMContentLoaded', function() {
initializeAIAssistant();
loadLatestUpdates();
});
</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>