Spaces:
Running
Running
Переведи весь проект на русский
Browse files- components/footer.js +22 -23
- components/navigation.js +13 -15
- index.html +69 -71
components/footer.js
CHANGED
|
@@ -11,7 +11,6 @@ class CustomFooter extends HTMLElement {
|
|
| 11 |
.social-icon {
|
| 12 |
transition: all 0.3s ease;
|
| 13 |
}
|
| 14 |
-
|
| 15 |
.social-icon:hover {
|
| 16 |
transform: translateY(-3px);
|
| 17 |
color: #38bdf8;
|
|
@@ -37,12 +36,12 @@ class CustomFooter extends HTMLElement {
|
|
| 37 |
</div>
|
| 38 |
<div>
|
| 39 |
<h3 class="text-xl font-bold">MysticVibe Explorer</h3>
|
| 40 |
-
<p class="text-gray-400 text-sm">
|
| 41 |
</div>
|
| 42 |
</div>
|
| 43 |
<p class="text-gray-400 mb-6">
|
| 44 |
-
|
| 45 |
-
|
| 46 |
</p>
|
| 47 |
<div class="flex space-x-4">
|
| 48 |
<a href="#" class="social-icon text-gray-400 hover:text-primary-400">
|
|
@@ -62,26 +61,26 @@ class CustomFooter extends HTMLElement {
|
|
| 62 |
|
| 63 |
<!-- Quick Links -->
|
| 64 |
<div>
|
| 65 |
-
<h4 class="text-lg font-bold mb-6">
|
| 66 |
<ul class="space-y-3">
|
| 67 |
<li>
|
| 68 |
<a href="#explore" class="footer-link text-gray-400 hover:text-white">
|
| 69 |
-
|
| 70 |
</a>
|
| 71 |
</li>
|
| 72 |
<li>
|
| 73 |
<a href="#insights" class="footer-link text-gray-400 hover:text-white">
|
| 74 |
-
|
| 75 |
</a>
|
| 76 |
</li>
|
| 77 |
<li>
|
| 78 |
<a href="#" class="footer-link text-gray-400 hover:text-white">
|
| 79 |
-
|
| 80 |
</a>
|
| 81 |
</li>
|
| 82 |
<li>
|
| 83 |
<a href="#" class="footer-link text-gray-400 hover:text-white">
|
| 84 |
-
|
| 85 |
</a>
|
| 86 |
</li>
|
| 87 |
</ul>
|
|
@@ -89,26 +88,26 @@ class CustomFooter extends HTMLElement {
|
|
| 89 |
|
| 90 |
<!-- Resources -->
|
| 91 |
<div>
|
| 92 |
-
<h4 class="text-lg font-bold mb-6">
|
| 93 |
<ul class="space-y-3">
|
| 94 |
<li>
|
| 95 |
<a href="#" class="footer-link text-gray-400 hover:text-white">
|
| 96 |
-
|
| 97 |
</a>
|
| 98 |
</li>
|
| 99 |
<li>
|
| 100 |
<a href="#" class="footer-link text-gray-400 hover:text-white">
|
| 101 |
-
|
| 102 |
</a>
|
| 103 |
</li>
|
| 104 |
<li>
|
| 105 |
<a href="#" class="footer-link text-gray-400 hover:text-white">
|
| 106 |
-
|
| 107 |
</a>
|
| 108 |
</li>
|
| 109 |
<li>
|
| 110 |
<a href="#" class="footer-link text-gray-400 hover:text-white">
|
| 111 |
-
|
| 112 |
</a>
|
| 113 |
</li>
|
| 114 |
</ul>
|
|
@@ -116,18 +115,18 @@ class CustomFooter extends HTMLElement {
|
|
| 116 |
|
| 117 |
<!-- Newsletter -->
|
| 118 |
<div>
|
| 119 |
-
<h4 class="text-lg font-bold mb-6">
|
| 120 |
<p class="text-gray-400 mb-4">
|
| 121 |
-
|
| 122 |
</p>
|
| 123 |
<div class="flex flex-col space-y-3">
|
| 124 |
<input
|
| 125 |
type="email"
|
| 126 |
-
placeholder="
|
| 127 |
class="px-4 py-3 bg-gray-800 border border-gray-700 rounded-lg focus:outline-none focus:border-primary-500 focus:ring-2 focus:ring-primary-500/20"
|
| 128 |
>
|
| 129 |
<button class="px-6 py-3 bg-gradient-to-r from-primary-500 to-secondary-500 hover:from-primary-600 hover:to-secondary-600 rounded-lg font-semibold transition-all duration-300">
|
| 130 |
-
|
| 131 |
</button>
|
| 132 |
</div>
|
| 133 |
</div>
|
|
@@ -137,24 +136,24 @@ class CustomFooter extends HTMLElement {
|
|
| 137 |
<div class="pt-8 border-t border-gray-800">
|
| 138 |
<div class="flex flex-col md:flex-row justify-between items-center space-y-4 md:space-y-0">
|
| 139 |
<div class="text-gray-500 text-sm">
|
| 140 |
-
© 2024 MysticVibe Explorer.
|
| 141 |
</div>
|
| 142 |
<div class="flex space-x-6 text-sm">
|
| 143 |
<a href="#" class="footer-link text-gray-500 hover:text-white">
|
| 144 |
-
|
| 145 |
</a>
|
| 146 |
<a href="#" class="footer-link text-gray-500 hover:text-white">
|
| 147 |
-
|
| 148 |
</a>
|
| 149 |
<a href="#" class="footer-link text-gray-500 hover:text-white">
|
| 150 |
-
|
| 151 |
</a>
|
| 152 |
</div>
|
| 153 |
</div>
|
| 154 |
</div>
|
| 155 |
</div>
|
| 156 |
</footer>
|
| 157 |
-
|
| 158 |
|
| 159 |
// Initialize Feather Icons in shadow DOM
|
| 160 |
setTimeout(() => {
|
|
|
|
| 11 |
.social-icon {
|
| 12 |
transition: all 0.3s ease;
|
| 13 |
}
|
|
|
|
| 14 |
.social-icon:hover {
|
| 15 |
transform: translateY(-3px);
|
| 16 |
color: #38bdf8;
|
|
|
|
| 36 |
</div>
|
| 37 |
<div>
|
| 38 |
<h3 class="text-xl font-bold">MysticVibe Explorer</h3>
|
| 39 |
+
<p class="text-gray-400 text-sm">Откройте для себя невидимое</p>
|
| 40 |
</div>
|
| 41 |
</div>
|
| 42 |
<p class="text-gray-400 mb-6">
|
| 43 |
+
Исследуем космические тайны и мистические инсайты с 2024 года.
|
| 44 |
+
Присоединяйтесь к нашему путешествию через неизведанное.
|
| 45 |
</p>
|
| 46 |
<div class="flex space-x-4">
|
| 47 |
<a href="#" class="social-icon text-gray-400 hover:text-primary-400">
|
|
|
|
| 61 |
|
| 62 |
<!-- Quick Links -->
|
| 63 |
<div>
|
| 64 |
+
<h4 class="text-lg font-bold mb-6">Быстрые ссылки</h4>
|
| 65 |
<ul class="space-y-3">
|
| 66 |
<li>
|
| 67 |
<a href="#explore" class="footer-link text-gray-400 hover:text-white">
|
| 68 |
+
Космический исследователь
|
| 69 |
</a>
|
| 70 |
</li>
|
| 71 |
<li>
|
| 72 |
<a href="#insights" class="footer-link text-gray-400 hover:text-white">
|
| 73 |
+
Ежедневные инсайты
|
| 74 |
</a>
|
| 75 |
</li>
|
| 76 |
<li>
|
| 77 |
<a href="#" class="footer-link text-gray-400 hover:text-white">
|
| 78 |
+
Библиотека исследований
|
| 79 |
</a>
|
| 80 |
</li>
|
| 81 |
<li>
|
| 82 |
<a href="#" class="footer-link text-gray-400 hover:text-white">
|
| 83 |
+
Форум сообщества
|
| 84 |
</a>
|
| 85 |
</li>
|
| 86 |
</ul>
|
|
|
|
| 88 |
|
| 89 |
<!-- Resources -->
|
| 90 |
<div>
|
| 91 |
+
<h4 class="text-lg font-bold mb-6">Ресурсы</h4>
|
| 92 |
<ul class="space-y-3">
|
| 93 |
<li>
|
| 94 |
<a href="#" class="footer-link text-gray-400 hover:text-white">
|
| 95 |
+
Документация
|
| 96 |
</a>
|
| 97 |
</li>
|
| 98 |
<li>
|
| 99 |
<a href="#" class="footer-link text-gray-400 hover:text-white">
|
| 100 |
+
Справочник API
|
| 101 |
</a>
|
| 102 |
</li>
|
| 103 |
<li>
|
| 104 |
<a href="#" class="footer-link text-gray-400 hover:text-white">
|
| 105 |
+
Учебные материалы
|
| 106 |
</a>
|
| 107 |
</li>
|
| 108 |
<li>
|
| 109 |
<a href="#" class="footer-link text-gray-400 hover:text-white">
|
| 110 |
+
Блог
|
| 111 |
</a>
|
| 112 |
</li>
|
| 113 |
</ul>
|
|
|
|
| 115 |
|
| 116 |
<!-- Newsletter -->
|
| 117 |
<div>
|
| 118 |
+
<h4 class="text-lg font-bold mb-6">Космические обновления</h4>
|
| 119 |
<p class="text-gray-400 mb-4">
|
| 120 |
+
Подпишитесь, чтобы получать мистические инсайты и космические открытия.
|
| 121 |
</p>
|
| 122 |
<div class="flex flex-col space-y-3">
|
| 123 |
<input
|
| 124 |
type="email"
|
| 125 |
+
placeholder="Ваш email адрес"
|
| 126 |
class="px-4 py-3 bg-gray-800 border border-gray-700 rounded-lg focus:outline-none focus:border-primary-500 focus:ring-2 focus:ring-primary-500/20"
|
| 127 |
>
|
| 128 |
<button class="px-6 py-3 bg-gradient-to-r from-primary-500 to-secondary-500 hover:from-primary-600 hover:to-secondary-600 rounded-lg font-semibold transition-all duration-300">
|
| 129 |
+
Подписаться
|
| 130 |
</button>
|
| 131 |
</div>
|
| 132 |
</div>
|
|
|
|
| 136 |
<div class="pt-8 border-t border-gray-800">
|
| 137 |
<div class="flex flex-col md:flex-row justify-between items-center space-y-4 md:space-y-0">
|
| 138 |
<div class="text-gray-500 text-sm">
|
| 139 |
+
© 2024 MysticVibe Explorer. Все космические права защищены.
|
| 140 |
</div>
|
| 141 |
<div class="flex space-x-6 text-sm">
|
| 142 |
<a href="#" class="footer-link text-gray-500 hover:text-white">
|
| 143 |
+
Политика конфиденциальности
|
| 144 |
</a>
|
| 145 |
<a href="#" class="footer-link text-gray-500 hover:text-white">
|
| 146 |
+
Условия использования
|
| 147 |
</a>
|
| 148 |
<a href="#" class="footer-link text-gray-500 hover:text-white">
|
| 149 |
+
Политика cookie
|
| 150 |
</a>
|
| 151 |
</div>
|
| 152 |
</div>
|
| 153 |
</div>
|
| 154 |
</div>
|
| 155 |
</footer>
|
| 156 |
+
`;
|
| 157 |
|
| 158 |
// Initialize Feather Icons in shadow DOM
|
| 159 |
setTimeout(() => {
|
components/navigation.js
CHANGED
|
@@ -28,7 +28,6 @@ class CustomNavigation extends HTMLElement {
|
|
| 28 |
background: linear-gradient(to right, #0ea5e9, #d946ef);
|
| 29 |
transition: width 0.3s ease;
|
| 30 |
}
|
| 31 |
-
|
| 32 |
.nav-link:hover::after {
|
| 33 |
width: 100%;
|
| 34 |
}
|
|
@@ -36,8 +35,7 @@ class CustomNavigation extends HTMLElement {
|
|
| 36 |
.mobile-menu {
|
| 37 |
transition: all 0.3s ease;
|
| 38 |
}
|
| 39 |
-
|
| 40 |
-
@media (max-width: 768px) {
|
| 41 |
.mobile-menu {
|
| 42 |
position: fixed;
|
| 43 |
top: 0;
|
|
@@ -70,26 +68,26 @@ class CustomNavigation extends HTMLElement {
|
|
| 70 |
<div class="hidden md:flex items-center space-x-6">
|
| 71 |
<a href="#explore" class="nav-link text-gray-300 hover:text-white px-3 py-2 rounded-lg hover:bg-gray-800/50 transition-all duration-200">
|
| 72 |
<i data-feather="compass" class="w-4 h-4 inline mr-2"></i>
|
| 73 |
-
|
| 74 |
</a>
|
| 75 |
<a href="#insights" class="nav-link text-gray-300 hover:text-white px-3 py-2 rounded-lg hover:bg-gray-800/50 transition-all duration-200">
|
| 76 |
<i data-feather="eye" class="w-4 h-4 inline mr-2"></i>
|
| 77 |
-
|
| 78 |
</a>
|
| 79 |
<a href="#" class="nav-link text-gray-300 hover:text-white px-3 py-2 rounded-lg hover:bg-gray-800/50 transition-all duration-200">
|
| 80 |
<i data-feather="book" class="w-4 h-4 inline mr-2"></i>
|
| 81 |
-
|
| 82 |
</a>
|
| 83 |
<a href="#" class="nav-link text-gray-300 hover:text-white px-3 py-2 rounded-lg hover:bg-gray-800/50 transition-all duration-200">
|
| 84 |
<i data-feather="users" class="w-4 h-4 inline mr-2"></i>
|
| 85 |
-
|
| 86 |
</a>
|
| 87 |
<a href="#" class="nav-link text-gray-300 hover:text-white px-3 py-2 rounded-lg hover:bg-gray-800/50 transition-all duration-200">
|
| 88 |
<i data-feather="bar-chart-2" class="w-4 h-4 inline mr-2"></i>
|
| 89 |
-
|
| 90 |
</a>
|
| 91 |
<button class="px-5 py-2 bg-gradient-to-r from-primary-500 to-secondary-500 hover:from-primary-600 hover:to-secondary-600 rounded-full font-medium text-sm transition-all duration-300 transform hover:scale-105 shadow-lg hover:shadow-primary-500/30">
|
| 92 |
-
|
| 93 |
</button>
|
| 94 |
</div>
|
| 95 |
<!-- Mobile Menu Button -->
|
|
@@ -108,28 +106,28 @@ class CustomNavigation extends HTMLElement {
|
|
| 108 |
<div class="flex flex-col items-center space-y-6 w-full px-6">
|
| 109 |
<a href="#explore" class="text-xl font-medium text-gray-300 hover:text-white transition-colors w-full py-4 border-b border-gray-800 text-center">
|
| 110 |
<i data-feather="compass" class="w-5 h-5 inline mr-3"></i>
|
| 111 |
-
|
| 112 |
</a>
|
| 113 |
<a href="#insights" class="text-xl font-medium text-gray-300 hover:text-white transition-colors w-full py-4 border-b border-gray-800 text-center">
|
| 114 |
<i data-feather="eye" class="w-5 h-5 inline mr-3"></i>
|
| 115 |
-
|
| 116 |
</a>
|
| 117 |
<a href="#" class="text-xl font-medium text-gray-300 hover:text-white transition-colors w-full py-4 border-b border-gray-800 text-center">
|
| 118 |
<i data-feather="book" class="w-5 h-5 inline mr-3"></i>
|
| 119 |
-
|
| 120 |
</a>
|
| 121 |
<a href="#" class="text-xl font-medium text-gray-300 hover:text-white transition-colors w-full py-4 border-b border-gray-800 text-center">
|
| 122 |
<i data-feather="users" class="w-5 h-5 inline mr-3"></i>
|
| 123 |
-
|
| 124 |
</a>
|
| 125 |
<button class="w-full mt-4 px-6 py-3 bg-gradient-to-r from-primary-500 to-secondary-500 hover:from-primary-600 hover:to-secondary-600 rounded-lg font-medium transition-all duration-300">
|
| 126 |
-
|
| 127 |
</button>
|
| 128 |
</div>
|
| 129 |
</div>
|
| 130 |
</div>
|
| 131 |
</nav>
|
| 132 |
-
|
| 133 |
|
| 134 |
// Initialize Feather Icons in shadow DOM
|
| 135 |
setTimeout(() => {
|
|
|
|
| 28 |
background: linear-gradient(to right, #0ea5e9, #d946ef);
|
| 29 |
transition: width 0.3s ease;
|
| 30 |
}
|
|
|
|
| 31 |
.nav-link:hover::after {
|
| 32 |
width: 100%;
|
| 33 |
}
|
|
|
|
| 35 |
.mobile-menu {
|
| 36 |
transition: all 0.3s ease;
|
| 37 |
}
|
| 38 |
+
@media (max-width: 768px) {
|
|
|
|
| 39 |
.mobile-menu {
|
| 40 |
position: fixed;
|
| 41 |
top: 0;
|
|
|
|
| 68 |
<div class="hidden md:flex items-center space-x-6">
|
| 69 |
<a href="#explore" class="nav-link text-gray-300 hover:text-white px-3 py-2 rounded-lg hover:bg-gray-800/50 transition-all duration-200">
|
| 70 |
<i data-feather="compass" class="w-4 h-4 inline mr-2"></i>
|
| 71 |
+
Исследовать
|
| 72 |
</a>
|
| 73 |
<a href="#insights" class="nav-link text-gray-300 hover:text-white px-3 py-2 rounded-lg hover:bg-gray-800/50 transition-all duration-200">
|
| 74 |
<i data-feather="eye" class="w-4 h-4 inline mr-2"></i>
|
| 75 |
+
Инсайты
|
| 76 |
</a>
|
| 77 |
<a href="#" class="nav-link text-gray-300 hover:text-white px-3 py-2 rounded-lg hover:bg-gray-800/50 transition-all duration-200">
|
| 78 |
<i data-feather="book" class="w-4 h-4 inline mr-2"></i>
|
| 79 |
+
Научные статьи
|
| 80 |
</a>
|
| 81 |
<a href="#" class="nav-link text-gray-300 hover:text-white px-3 py-2 rounded-lg hover:bg-gray-800/50 transition-all duration-200">
|
| 82 |
<i data-feather="users" class="w-4 h-4 inline mr-2"></i>
|
| 83 |
+
Команда исследователей
|
| 84 |
</a>
|
| 85 |
<a href="#" class="nav-link text-gray-300 hover:text-white px-3 py-2 rounded-lg hover:bg-gray-800/50 transition-all duration-200">
|
| 86 |
<i data-feather="bar-chart-2" class="w-4 h-4 inline mr-2"></i>
|
| 87 |
+
Портал данных
|
| 88 |
</a>
|
| 89 |
<button class="px-5 py-2 bg-gradient-to-r from-primary-500 to-secondary-500 hover:from-primary-600 hover:to-secondary-600 rounded-full font-medium text-sm transition-all duration-300 transform hover:scale-105 shadow-lg hover:shadow-primary-500/30">
|
| 90 |
+
Присоединиться к исследованию
|
| 91 |
</button>
|
| 92 |
</div>
|
| 93 |
<!-- Mobile Menu Button -->
|
|
|
|
| 106 |
<div class="flex flex-col items-center space-y-6 w-full px-6">
|
| 107 |
<a href="#explore" class="text-xl font-medium text-gray-300 hover:text-white transition-colors w-full py-4 border-b border-gray-800 text-center">
|
| 108 |
<i data-feather="compass" class="w-5 h-5 inline mr-3"></i>
|
| 109 |
+
Исследовать
|
| 110 |
</a>
|
| 111 |
<a href="#insights" class="text-xl font-medium text-gray-300 hover:text-white transition-colors w-full py-4 border-b border-gray-800 text-center">
|
| 112 |
<i data-feather="eye" class="w-5 h-5 inline mr-3"></i>
|
| 113 |
+
Инсайты
|
| 114 |
</a>
|
| 115 |
<a href="#" class="text-xl font-medium text-gray-300 hover:text-white transition-colors w-full py-4 border-b border-gray-800 text-center">
|
| 116 |
<i data-feather="book" class="w-5 h-5 inline mr-3"></i>
|
| 117 |
+
Библиотека
|
| 118 |
</a>
|
| 119 |
<a href="#" class="text-xl font-medium text-gray-300 hover:text-white transition-colors w-full py-4 border-b border-gray-800 text-center">
|
| 120 |
<i data-feather="users" class="w-5 h-5 inline mr-3"></i>
|
| 121 |
+
Сообщество
|
| 122 |
</a>
|
| 123 |
<button class="w-full mt-4 px-6 py-3 bg-gradient-to-r from-primary-500 to-secondary-500 hover:from-primary-600 hover:to-secondary-600 rounded-lg font-medium transition-all duration-300">
|
| 124 |
+
Присоединиться к исследованию
|
| 125 |
</button>
|
| 126 |
</div>
|
| 127 |
</div>
|
| 128 |
</div>
|
| 129 |
</nav>
|
| 130 |
+
`;
|
| 131 |
|
| 132 |
// Initialize Feather Icons in shadow DOM
|
| 133 |
setTimeout(() => {
|
index.html
CHANGED
|
@@ -3,11 +3,11 @@
|
|
| 3 |
<head>
|
| 4 |
<meta charset="UTF-8">
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
-
<title>MysticVibe Explorer 🌀 -
|
| 7 |
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
|
| 8 |
<link rel="stylesheet" href="style.css">
|
| 9 |
<script src="https://cdn.tailwindcss.com"></script>
|
| 10 |
-
|
| 11 |
<script src="https://unpkg.com/feather-icons"></script>
|
| 12 |
<script>
|
| 13 |
tailwind.config = {
|
|
@@ -48,7 +48,6 @@
|
|
| 48 |
<!-- Navigation Component -->
|
| 49 |
<script src="components/navigation.js"></script>
|
| 50 |
<custom-navigation></custom-navigation>
|
| 51 |
-
|
| 52 |
<!-- Hero Section -->
|
| 53 |
<main class="container mx-auto px-4 py-12 md:py-20">
|
| 54 |
<div class="max-w-6xl mx-auto">
|
|
@@ -57,15 +56,15 @@
|
|
| 57 |
MysticVibe Explorer 🌀
|
| 58 |
</h1>
|
| 59 |
<p class="text-xl md:text-2xl text-gray-300 mb-10 max-w-3xl mx-auto">
|
| 60 |
-
|
| 61 |
-
|
| 62 |
</p>
|
| 63 |
<div class="flex flex-wrap justify-center gap-4">
|
| 64 |
<a href="#explore" class="px-8 py-4 bg-gradient-to-r from-primary-500 to-secondary-500 hover:from-primary-600 hover:to-secondary-600 rounded-full font-semibold text-lg transition-all duration-300 transform hover:scale-105 shadow-lg hover:shadow-xl">
|
| 65 |
-
<i data-feather="compass" class="inline mr-2"></i>
|
| 66 |
</a>
|
| 67 |
<a href="#insights" class="px-8 py-4 bg-gray-800 hover:bg-gray-700 border border-gray-700 rounded-full font-semibold text-lg transition-all duration-300 transform hover:scale-105">
|
| 68 |
-
<i data-feather="eye" class="inline mr-2"></i>
|
| 69 |
</a>
|
| 70 |
</div>
|
| 71 |
</div>
|
|
@@ -74,7 +73,7 @@
|
|
| 74 |
<section id="explore" class="mb-20">
|
| 75 |
<h2 class="text-3xl md:text-4xl font-bold mb-10 text-center">
|
| 76 |
<i data-feather="star" class="inline mr-3 text-yellow-400"></i>
|
| 77 |
-
|
| 78 |
</h2>
|
| 79 |
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
|
| 80 |
<!-- Insight Card 1 -->
|
|
@@ -84,16 +83,16 @@
|
|
| 84 |
<i data-feather="moon" class="w-6 h-6"></i>
|
| 85 |
</div>
|
| 86 |
<div class="ml-4">
|
| 87 |
-
<h3 class="text-xl font-bold">
|
| 88 |
-
<p class="text-gray-400 text-sm">
|
| 89 |
</div>
|
| 90 |
</div>
|
| 91 |
<p class="text-gray-300 mb-6">
|
| 92 |
-
|
| 93 |
-
|
| 94 |
</p>
|
| 95 |
<div class="flex justify-between items-center">
|
| 96 |
-
<span class="text-primary-400 font-semibold">
|
| 97 |
<button class="text-secondary-400 hover:text-secondary-300 transition-colors">
|
| 98 |
<i data-feather="arrow-right" class="w-5 h-5"></i>
|
| 99 |
</button>
|
|
@@ -107,16 +106,16 @@
|
|
| 107 |
<i data-feather="wind" class="w-6 h-6"></i>
|
| 108 |
</div>
|
| 109 |
<div class="ml-4">
|
| 110 |
-
<h3 class="text-xl font-bold">
|
| 111 |
-
<p class="text-gray-400 text-sm">
|
| 112 |
</div>
|
| 113 |
</div>
|
| 114 |
<p class="text-gray-300 mb-6">
|
| 115 |
-
|
| 116 |
-
|
| 117 |
</p>
|
| 118 |
<div class="flex justify-between items-center">
|
| 119 |
-
<span class="text-secondary-400 font-semibold">
|
| 120 |
<button class="text-primary-400 hover:text-primary-300 transition-colors">
|
| 121 |
<i data-feather="arrow-right" class="w-5 h-5"></i>
|
| 122 |
</button>
|
|
@@ -130,16 +129,16 @@
|
|
| 130 |
<i data-feather="zap" class="w-6 h-6"></i>
|
| 131 |
</div>
|
| 132 |
<div class="ml-4">
|
| 133 |
-
<h3 class="text-xl font-bold">
|
| 134 |
-
<p class="text-gray-400 text-sm">
|
| 135 |
</div>
|
| 136 |
</div>
|
| 137 |
<p class="text-gray-300 mb-6">
|
| 138 |
-
|
| 139 |
-
|
| 140 |
</p>
|
| 141 |
<div class="flex justify-between items-center">
|
| 142 |
-
<span class="text-primary-300 font-semibold">
|
| 143 |
<button class="text-secondary-300 hover:text-secondary-200 transition-colors">
|
| 144 |
<i data-feather="arrow-right" class="w-5 h-5"></i>
|
| 145 |
</button>
|
|
@@ -154,46 +153,46 @@
|
|
| 154 |
<div class="flex flex-col lg:flex-row items-center justify-between gap-8">
|
| 155 |
<div class="lg:w-1/2">
|
| 156 |
<h2 class="text-3xl md:text-4xl font-bold mb-6">
|
| 157 |
-
|
| 158 |
</h2>
|
| 159 |
<p class="text-gray-300 mb-8 text-lg">
|
| 160 |
-
|
| 161 |
-
|
| 162 |
</p>
|
| 163 |
<div class="space-y-4">
|
| 164 |
<div class="flex items-center">
|
| 165 |
<i data-feather="check-circle" class="w-6 h-6 text-green-400 mr-3"></i>
|
| 166 |
-
<span class="text-gray-200">
|
| 167 |
</div>
|
| 168 |
<div class="flex items-center">
|
| 169 |
<i data-feather="check-circle" class="w-6 h-6 text-green-400 mr-3"></i>
|
| 170 |
-
<span class="text-gray-200">
|
| 171 |
</div>
|
| 172 |
<div class="flex items-center">
|
| 173 |
<i data-feather="check-circle" class="w-6 h-6 text-green-400 mr-3"></i>
|
| 174 |
-
<span class="text-gray-200">
|
| 175 |
</div>
|
| 176 |
</div>
|
| 177 |
<button id="generateInsight" class="mt-8 px-8 py-4 bg-gradient-to-r from-primary-600 to-secondary-600 hover:from-primary-700 hover:to-secondary-700 rounded-full font-semibold text-lg transition-all duration-300 transform hover:scale-105">
|
| 178 |
-
<i data-feather="refresh-cw" class="inline mr-2"></i>
|
| 179 |
</button>
|
| 180 |
</div>
|
| 181 |
<div class="lg:w-1/2">
|
| 182 |
<div class="bg-gray-900 rounded-2xl p-6 border border-gray-700">
|
| 183 |
<div class="flex justify-between items-center mb-6">
|
| 184 |
-
<h3 class="text-xl font-bold">
|
| 185 |
-
<span class="text-xs px-3 py-1 bg-primary-500/20 text-primary-300 rounded-full">
|
| 186 |
</div>
|
| 187 |
<div id="insightDisplay" class="text-center py-8">
|
| 188 |
<div class="text-6xl mb-4">🌀</div>
|
| 189 |
<p class="text-gray-300 text-lg">
|
| 190 |
-
|
| 191 |
-
|
| 192 |
</p>
|
| 193 |
</div>
|
| 194 |
<div class="text-center text-gray-400 text-sm">
|
| 195 |
<i data-feather="clock" class="inline w-4 h-4 mr-1"></i>
|
| 196 |
-
|
| 197 |
</div>
|
| 198 |
</div>
|
| 199 |
</div>
|
|
@@ -205,55 +204,55 @@
|
|
| 205 |
<section class="mb-20">
|
| 206 |
<h2 class="text-3xl md:text-4xl font-bold mb-10 text-center">
|
| 207 |
<i data-feather="image" class="inline mr-3 text-purple-400"></i>
|
| 208 |
-
|
| 209 |
</h2>
|
| 210 |
<div class="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-4">
|
| 211 |
<div class="relative overflow-hidden rounded-xl group cursor-pointer">
|
| 212 |
-
<img src="http://static.photos/abstract/640x360/1" alt="
|
| 213 |
<div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-end p-4">
|
| 214 |
-
<span class="text-white font-semibold">
|
| 215 |
</div>
|
| 216 |
</div>
|
| 217 |
<div class="relative overflow-hidden rounded-xl group cursor-pointer">
|
| 218 |
-
<img src="http://static.photos/blue/640x360/2" alt="
|
| 219 |
<div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-end p-4">
|
| 220 |
-
<span class="text-white font-semibold">
|
| 221 |
</div>
|
| 222 |
</div>
|
| 223 |
<div class="relative overflow-hidden rounded-xl group cursor-pointer">
|
| 224 |
-
<img src="http://static.photos/gradient/640x360/3" alt="
|
| 225 |
<div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-end p-4">
|
| 226 |
-
<span class="text-white font-semibold">
|
| 227 |
</div>
|
| 228 |
</div>
|
| 229 |
<div class="relative overflow-hidden rounded-xl group cursor-pointer">
|
| 230 |
-
<img src="http://static.photos/black/640x360/4" alt="
|
| 231 |
<div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-end p-4">
|
| 232 |
-
<span class="text-white font-semibold">
|
| 233 |
</div>
|
| 234 |
</div>
|
| 235 |
<div class="relative overflow-hidden rounded-xl group cursor-pointer">
|
| 236 |
-
<img src="http://static.photos/space/640x360/5" alt="
|
| 237 |
<div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-end p-4">
|
| 238 |
-
<span class="text-white font-semibold">
|
| 239 |
</div>
|
| 240 |
</div>
|
| 241 |
<div class="relative overflow-hidden rounded-xl group cursor-pointer">
|
| 242 |
-
<img src="http://static.photos/energy/640x360/6" alt="
|
| 243 |
<div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-end p-4">
|
| 244 |
-
<span class="text-white font-semibold">
|
| 245 |
</div>
|
| 246 |
</div>
|
| 247 |
<div class="relative overflow-hidden rounded-xl group cursor-pointer">
|
| 248 |
-
<img src="http://static.photos/quantum/640x360/7" alt="
|
| 249 |
<div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-end p-4">
|
| 250 |
-
<span class="text-white font-semibold">
|
| 251 |
</div>
|
| 252 |
</div>
|
| 253 |
<div class="relative overflow-hidden rounded-xl group cursor-pointer">
|
| 254 |
-
<img src="http://static.photos/light/640x360/8" alt="
|
| 255 |
<div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-end p-4">
|
| 256 |
-
<span class="text-white font-semibold">
|
| 257 |
</div>
|
| 258 |
</div>
|
| 259 |
</div>
|
|
@@ -265,38 +264,37 @@
|
|
| 265 |
<div class="container mx-auto px-4">
|
| 266 |
<h2 class="text-3xl md:text-4xl font-bold mb-16 text-center">
|
| 267 |
<i data-feather="users" class="inline mr-3 text-primary-400"></i>
|
| 268 |
-
|
| 269 |
</h2>
|
| 270 |
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
|
| 271 |
<div class="bg-gray-800/50 backdrop-blur-sm rounded-2xl p-6 border border-gray-700 hover:border-primary-500 transition-all duration-300 text-center">
|
| 272 |
-
<img src="http://static.photos/people/200x200/1" alt="
|
| 273 |
-
<h3 class="text-xl font-bold mb-1">
|
| 274 |
-
<p class="text-primary-400 text-sm mb-4">
|
| 275 |
-
<p class="text-gray-300 text-sm">
|
| 276 |
</div>
|
| 277 |
<div class="bg-gray-800/50 backdrop-blur-sm rounded-2xl p-6 border border-gray-700 hover:border-secondary-500 transition-all duration-300 text-center">
|
| 278 |
-
<img src="http://static.photos/people/200x200/2" alt="
|
| 279 |
-
<h3 class="text-xl font-bold mb-1">
|
| 280 |
-
<p class="text-secondary-400 text-sm mb-4">
|
| 281 |
-
<p class="text-gray-300 text-sm">
|
| 282 |
</div>
|
| 283 |
<div class="bg-gray-800/50 backdrop-blur-sm rounded-2xl p-6 border border-gray-700 hover:border-primary-500 transition-all duration-300 text-center">
|
| 284 |
-
<img src="http://static.photos/people/200x200/3" alt="
|
| 285 |
-
<h3 class="text-xl font-bold mb-1">
|
| 286 |
-
<p class="text-primary-400 text-sm mb-4">
|
| 287 |
-
<p class="text-gray-300 text-sm">
|
| 288 |
</div>
|
| 289 |
<div class="bg-gray-800/50 backdrop-blur-sm rounded-2xl p-6 border border-gray-700 hover:border-secondary-500 transition-all duration-300 text-center">
|
| 290 |
-
<img src="http://static.photos/people/200x200/4" alt="
|
| 291 |
-
<h3 class="text-xl font-bold mb-1">
|
| 292 |
-
<p class="text-secondary-400 text-sm mb-4">
|
| 293 |
-
<p class="text-gray-300 text-sm">
|
| 294 |
</div>
|
| 295 |
</div>
|
| 296 |
</div>
|
| 297 |
</section>
|
| 298 |
-
|
| 299 |
-
<!-- Footer Component -->
|
| 300 |
<script src="components/footer.js"></script>
|
| 301 |
<custom-footer></custom-footer>
|
| 302 |
<!-- Scripts -->
|
|
|
|
| 3 |
<head>
|
| 4 |
<meta charset="UTF-8">
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>MysticVibe Explorer 🌀 - Откройте для себя невидимое</title>
|
| 7 |
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
|
| 8 |
<link rel="stylesheet" href="style.css">
|
| 9 |
<script src="https://cdn.tailwindcss.com"></script>
|
| 10 |
+
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
|
| 11 |
<script src="https://unpkg.com/feather-icons"></script>
|
| 12 |
<script>
|
| 13 |
tailwind.config = {
|
|
|
|
| 48 |
<!-- Navigation Component -->
|
| 49 |
<script src="components/navigation.js"></script>
|
| 50 |
<custom-navigation></custom-navigation>
|
|
|
|
| 51 |
<!-- Hero Section -->
|
| 52 |
<main class="container mx-auto px-4 py-12 md:py-20">
|
| 53 |
<div class="max-w-6xl mx-auto">
|
|
|
|
| 56 |
MysticVibe Explorer 🌀
|
| 57 |
</h1>
|
| 58 |
<p class="text-xl md:text-2xl text-gray-300 mb-10 max-w-3xl mx-auto">
|
| 59 |
+
Раскройте тайны космоса с помощью наших интерактивных инструментов исследования.
|
| 60 |
+
Откройте для себя небесные узоры, квантовые явления и мистические энергии.
|
| 61 |
</p>
|
| 62 |
<div class="flex flex-wrap justify-center gap-4">
|
| 63 |
<a href="#explore" class="px-8 py-4 bg-gradient-to-r from-primary-500 to-secondary-500 hover:from-primary-600 hover:to-secondary-600 rounded-full font-semibold text-lg transition-all duration-300 transform hover:scale-105 shadow-lg hover:shadow-xl">
|
| 64 |
+
<i data-feather="compass" class="inline mr-2"></i> Начать исследование
|
| 65 |
</a>
|
| 66 |
<a href="#insights" class="px-8 py-4 bg-gray-800 hover:bg-gray-700 border border-gray-700 rounded-full font-semibold text-lg transition-all duration-300 transform hover:scale-105">
|
| 67 |
+
<i data-feather="eye" class="inline mr-2"></i> Просмотр инсайтов
|
| 68 |
</a>
|
| 69 |
</div>
|
| 70 |
</div>
|
|
|
|
| 73 |
<section id="explore" class="mb-20">
|
| 74 |
<h2 class="text-3xl md:text-4xl font-bold mb-10 text-center">
|
| 75 |
<i data-feather="star" class="inline mr-3 text-yellow-400"></i>
|
| 76 |
+
Космические инсайты дня
|
| 77 |
</h2>
|
| 78 |
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
|
| 79 |
<!-- Insight Card 1 -->
|
|
|
|
| 83 |
<i data-feather="moon" class="w-6 h-6"></i>
|
| 84 |
</div>
|
| 85 |
<div class="ml-4">
|
| 86 |
+
<h3 class="text-xl font-bold">Лунные выравнивания</h3>
|
| 87 |
+
<p class="text-gray-400 text-sm">Небесная синхронизация</p>
|
| 88 |
</div>
|
| 89 |
</div>
|
| 90 |
<p class="text-gray-300 mb-6">
|
| 91 |
+
Исследуйте, как лунные фазы влияют на энергетические поля и духовные связи.
|
| 92 |
+
Наши исследования выявляют 8 различных паттернов лунного влияния.
|
| 93 |
</p>
|
| 94 |
<div class="flex justify-between items-center">
|
| 95 |
+
<span class="text-primary-400 font-semibold">Активное исследование</span>
|
| 96 |
<button class="text-secondary-400 hover:text-secondary-300 transition-colors">
|
| 97 |
<i data-feather="arrow-right" class="w-5 h-5"></i>
|
| 98 |
</button>
|
|
|
|
| 106 |
<i data-feather="wind" class="w-6 h-6"></i>
|
| 107 |
</div>
|
| 108 |
<div class="ml-4">
|
| 109 |
+
<h3 class="text-xl font-bold">Квантовый резонанс</h3>
|
| 110 |
+
<p class="text-gray-400 text-sm">Межпространственные явления</p>
|
| 111 |
</div>
|
| 112 |
</div>
|
| 113 |
<p class="text-gray-300 mb-6">
|
| 114 |
+
Наши квантовые датчики обнаруживают многомерные вибрации по 12 частотам.
|
| 115 |
+
Они формируют основу голографической природы нашей реальности.
|
| 116 |
</p>
|
| 117 |
<div class="flex justify-between items-center">
|
| 118 |
+
<span class="text-secondary-400 font-semibold">Новое открытие</span>
|
| 119 |
<button class="text-primary-400 hover:text-primary-300 transition-colors">
|
| 120 |
<i data-feather="arrow-right" class="w-5 h-5"></i>
|
| 121 |
</button>
|
|
|
|
| 129 |
<i data-feather="zap" class="w-6 h-6"></i>
|
| 130 |
</div>
|
| 131 |
<div class="ml-4">
|
| 132 |
+
<h3 class="text-xl font-bold">Плазменные вихри</h3>
|
| 133 |
+
<p class="text-gray-400 text-sm">Динамика энергии</p>
|
| 134 |
</div>
|
| 135 |
</div>
|
| 136 |
<p class="text-gray-300 mb-6">
|
| 137 |
+
Космические плазменные образования создают энергетические вихри, влияющие на сознание.
|
| 138 |
+
Мы нанесли на карту более 200 активных точек вихрей по всему миру.
|
| 139 |
</p>
|
| 140 |
<div class="flex justify-between items-center">
|
| 141 |
+
<span class="text-primary-300 font-semibold">Текущее исследование</span>
|
| 142 |
<button class="text-secondary-300 hover:text-secondary-200 transition-colors">
|
| 143 |
<i data-feather="arrow-right" class="w-5 h-5"></i>
|
| 144 |
</button>
|
|
|
|
| 153 |
<div class="flex flex-col lg:flex-row items-center justify-between gap-8">
|
| 154 |
<div class="lg:w-1/2">
|
| 155 |
<h2 class="text-3xl md:text-4xl font-bold mb-6">
|
| 156 |
+
Интерактивный космический исследователь
|
| 157 |
</h2>
|
| 158 |
<p class="text-gray-300 mb-8 text-lg">
|
| 159 |
+
Наши передовые алгоритмы анализируют космические энергетические паттерны в реальном времени.
|
| 160 |
+
Получайте персонализированные мистические инсайты на основе планетарных выравниваний и квантовых флуктуаций.
|
| 161 |
</p>
|
| 162 |
<div class="space-y-4">
|
| 163 |
<div class="flex items-center">
|
| 164 |
<i data-feather="check-circle" class="w-6 h-6 text-green-400 mr-3"></i>
|
| 165 |
+
<span class="text-gray-200">Анализ космических данных в реальном времени</span>
|
| 166 |
</div>
|
| 167 |
<div class="flex items-center">
|
| 168 |
<i data-feather="check-circle" class="w-6 h-6 text-green-400 mr-3"></i>
|
| 169 |
+
<span class="text-gray-200">Персонализированные мистические инсайты</span>
|
| 170 |
</div>
|
| 171 |
<div class="flex items-center">
|
| 172 |
<i data-feather="check-circle" class="w-6 h-6 text-green-400 mr-3"></i>
|
| 173 |
+
<span class="text-gray-200">Интерактивные 3D визуализации</span>
|
| 174 |
</div>
|
| 175 |
</div>
|
| 176 |
<button id="generateInsight" class="mt-8 px-8 py-4 bg-gradient-to-r from-primary-600 to-secondary-600 hover:from-primary-700 hover:to-secondary-700 rounded-full font-semibold text-lg transition-all duration-300 transform hover:scale-105">
|
| 177 |
+
<i data-feather="refresh-cw" class="inline mr-2"></i> Сгенерировать новый инсайт
|
| 178 |
</button>
|
| 179 |
</div>
|
| 180 |
<div class="lg:w-1/2">
|
| 181 |
<div class="bg-gray-900 rounded-2xl p-6 border border-gray-700">
|
| 182 |
<div class="flex justify-between items-center mb-6">
|
| 183 |
+
<h3 class="text-xl font-bold">Текущий инсайт</h3>
|
| 184 |
+
<span class="text-xs px-3 py-1 bg-primary-500/20 text-primary-300 rounded-full">В реальном времени</span>
|
| 185 |
</div>
|
| 186 |
<div id="insightDisplay" class="text-center py-8">
|
| 187 |
<div class="text-6xl mb-4">🌀</div>
|
| 188 |
<p class="text-gray-300 text-lg">
|
| 189 |
+
Текущее космическое выравнивание указывает на пиковую энергию проявления (87% интенсивности).
|
| 190 |
+
Соединение Юпитера и Плутона усиливает потенциал трансформации.
|
| 191 |
</p>
|
| 192 |
</div>
|
| 193 |
<div class="text-center text-gray-400 text-sm">
|
| 194 |
<i data-feather="clock" class="inline w-4 h-4 mr-1"></i>
|
| 195 |
+
Обновлено только что
|
| 196 |
</div>
|
| 197 |
</div>
|
| 198 |
</div>
|
|
|
|
| 204 |
<section class="mb-20">
|
| 205 |
<h2 class="text-3xl md:text-4xl font-bold mb-10 text-center">
|
| 206 |
<i data-feather="image" class="inline mr-3 text-purple-400"></i>
|
| 207 |
+
Мистическая визуальная галерея
|
| 208 |
</h2>
|
| 209 |
<div class="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-4">
|
| 210 |
<div class="relative overflow-hidden rounded-xl group cursor-pointer">
|
| 211 |
+
<img src="http://static.photos/abstract/640x360/1" alt="Квантовое поле" class="w-full h-48 object-cover group-hover:scale-110 transition-transform duration-500">
|
| 212 |
<div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-end p-4">
|
| 213 |
+
<span class="text-white font-semibold">Тороидальное поле (Тип-3)</span>
|
| 214 |
</div>
|
| 215 |
</div>
|
| 216 |
<div class="relative overflow-hidden rounded-xl group cursor-pointer">
|
| 217 |
+
<img src="http://static.photos/blue/640x360/2" alt="Плазменный вихрь" class="w-full h-48 object-cover group-hover:scale-110 transition-transform duration-500">
|
| 218 |
<div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-end p-4">
|
| 219 |
+
<span class="text-white font-semibold">Ионизированный плазменный вихрь</span>
|
| 220 |
</div>
|
| 221 |
</div>
|
| 222 |
<div class="relative overflow-hidden rounded-xl group cursor-pointer">
|
| 223 |
+
<img src="http://static.photos/gradient/640x360/3" alt="Лей-линии" class="w-full h-48 object-cover group-hover:scale-110 transition-transform duration-500">
|
| 224 |
<div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-end p-4">
|
| 225 |
+
<span class="text-white font-semibold">Энергетическая сетка Земли</span>
|
| 226 |
</div>
|
| 227 |
</div>
|
| 228 |
<div class="relative overflow-hidden rounded-xl group cursor-pointer">
|
| 229 |
+
<img src="http://static.photos/black/640x360/4" alt="Сеть темной материи" class="w-full h-48 object-cover group-hover:scale-110 transition-transform duration-500">
|
| 230 |
<div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-end p-4">
|
| 231 |
+
<span class="text-white font-semibold">Сеть темной материи</span>
|
| 232 |
</div>
|
| 233 |
</div>
|
| 234 |
<div class="relative overflow-hidden rounded-xl group cursor-pointer">
|
| 235 |
+
<img src="http://static.photos/space/640x360/5" alt="Формирование туманности" class="w-full h-48 object-cover group-hover:scale-110 transition-transform duration-500">
|
| 236 |
<div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-end p-4">
|
| 237 |
+
<span class="text-white font-semibold">Звездная колыбель</span>
|
| 238 |
</div>
|
| 239 |
</div>
|
| 240 |
<div class="relative overflow-hidden rounded-xl group cursor-pointer">
|
| 241 |
+
<img src="http://static.photos/energy/640x360/6" alt="Энергетальный портал" class="w-full h-48 object-cover group-hover:scale-110 transition-transform duration-500">
|
| 242 |
<div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-end p-4">
|
| 243 |
+
<span class="text-white font-semibold">Межпространственные врата</span>
|
| 244 |
</div>
|
| 245 |
</div>
|
| 246 |
<div class="relative overflow-hidden rounded-xl group cursor-pointer">
|
| 247 |
+
<img src="http://static.photos/quantum/640x360/7" alt="Квантовые струны" class="w-full h-48 object-cover group-hover:scale-110 transition-transform duration-500">
|
| 248 |
<div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-end p-4">
|
| 249 |
+
<span class="text-white font-semibold">Квантовые струны</span>
|
| 250 |
</div>
|
| 251 |
</div>
|
| 252 |
<div class="relative overflow-hidden rounded-xl group cursor-pointer">
|
| 253 |
+
<img src="http://static.photos/light/640x360/8" alt="Световые коды" class="w-full h-48 object-cover group-hover:scale-110 transition-transform duration-500">
|
| 254 |
<div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-end p-4">
|
| 255 |
+
<span class="text-white font-semibold">Священная геометрия</span>
|
| 256 |
</div>
|
| 257 |
</div>
|
| 258 |
</div>
|
|
|
|
| 264 |
<div class="container mx-auto px-4">
|
| 265 |
<h2 class="text-3xl md:text-4xl font-bold mb-16 text-center">
|
| 266 |
<i data-feather="users" class="inline mr-3 text-primary-400"></i>
|
| 267 |
+
Наша космическая исследовательская команда
|
| 268 |
</h2>
|
| 269 |
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
|
| 270 |
<div class="bg-gray-800/50 backdrop-blur-sm rounded-2xl p-6 border border-gray-700 hover:border-primary-500 transition-all duration-300 text-center">
|
| 271 |
+
<img src="http://static.photos/people/200x200/1" alt="Д-р Элена Маркес" class="w-24 h-24 rounded-full mx-auto mb-4 border-2 border-primary-500">
|
| 272 |
+
<h3 class="text-xl font-bold mb-1">Д-р Элена Маркес</h3>
|
| 273 |
+
<p class="text-primary-400 text-sm mb-4">Квантовый физик</p>
|
| 274 |
+
<p class="text-gray-300 text-sm">Специализируется на межпространственной квантовой теории поля и исследованиях сознания.</p>
|
| 275 |
</div>
|
| 276 |
<div class="bg-gray-800/50 backdrop-blur-sm rounded-2xl p-6 border border-gray-700 hover:border-secondary-500 transition-all duration-300 text-center">
|
| 277 |
+
<img src="http://static.photos/people/200x200/2" alt="Проф. Арджун Патель" class="w-24 h-24 rounded-full mx-auto mb-4 border-2 border-secondary-500">
|
| 278 |
+
<h3 class="text-xl font-bold mb-1">Проф. Арджун Патель</h3>
|
| 279 |
+
<p class="text-secondary-400 text-sm mb-4">Астрофизик</p>
|
| 280 |
+
<p class="text-gray-300 text-sm">Изучает космические плазменные образования и их влияние на биополя человека.</p>
|
| 281 |
</div>
|
| 282 |
<div class="bg-gray-800/50 backdrop-blur-sm rounded-2xl p-6 border border-gray-700 hover:border-primary-500 transition-all duration-300 text-center">
|
| 283 |
+
<img src="http://static.photos/people/200x200/3" alt="Д-р София Чен" class="w-24 h-24 rounded-full mx-auto mb-4 border-2 border-primary-500">
|
| 284 |
+
<h3 class="text-xl font-bold mb-1">Д-р София Чен</h3>
|
| 285 |
+
<p class="text-primary-400 text-sm mb-4">Мистический антрополог</p>
|
| 286 |
+
<p class="text-gray-300 text-sm">Исследует древние космические знания и их современные применения.</p>
|
| 287 |
</div>
|
| 288 |
<div class="bg-gray-800/50 backdrop-blur-sm rounded-2xl p-6 border border-gray-700 hover:border-secondary-500 transition-all duration-300 text-center">
|
| 289 |
+
<img src="http://static.photos/people/200x200/4" alt="Д-р Кваме Джонсон" class="w-24 h-24 rounded-full mx-auto mb-4 border-2 border-secondary-500">
|
| 290 |
+
<h3 class="text-xl font-bold mb-1">Д-р Кваме Джонсон</h3>
|
| 291 |
+
<p class="text-secondary-400 text-sm mb-4">Специалист по биоэнергетике</p>
|
| 292 |
+
<p class="text-gray-300 text-sm">Изучает энергетические поля человека в связи с космическими явлениями.</p>
|
| 293 |
</div>
|
| 294 |
</div>
|
| 295 |
</div>
|
| 296 |
</section>
|
| 297 |
+
<!-- Footer Component -->
|
|
|
|
| 298 |
<script src="components/footer.js"></script>
|
| 299 |
<custom-footer></custom-footer>
|
| 300 |
<!-- Scripts -->
|