Spaces:
Running
Running
File size: 29,265 Bytes
40d88a3 | 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 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TelSystemsPro | IT-решения для бизнеса</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
}
.hero-gradient {
background: linear-gradient(90deg, #1E3A8A 0%, #2563EB 100%);
}
.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.transition-all {
transition: all 0.3s ease;
}
.hamburger-line {
width: 25px;
height: 2px;
background-color: white;
margin: 5px 0;
transition: all 0.3s ease;
}
.mobile-menu {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease-out;
}
.mobile-menu.open {
max-height: 500px;
}
</style>
</head>
<body class="bg-gray-50">
<!-- Header -->
<header class="bg-white shadow-sm fixed w-full z-50">
<div class="container mx-auto px-4 py-3">
<div class="flex justify-between items-center">
<div class="flex items-center">
<a href="#" class="flex items-center">
<div class="w-10 h-10 bg-blue-600 rounded-md flex items-center justify-center mr-3">
<span class="text-white font-bold text-xl">TS</span>
</div>
<span class="text-xl font-bold text-gray-800">TelSystemsPro</span>
</a>
</div>
<nav class="hidden md:flex space-x-8">
<a href="#" class="text-gray-600 hover:text-blue-600 font-medium">Главная</a>
<a href="#" class="text-gray-600 hover:text-blue-600 font-medium">Видеонаблюдение</a>
<a href="#" class="text-gray-600 hover:text-blue-600 font-medium">Настройка ПК</a>
<a href="#" class="text-gray-600 hover:text-blue-600 font-medium">Сети и Wi-Fi</a>
<a href="#" class="text-gray-600 hover:text-blue-600 font-medium">Портфолио</a>
<a href="#" class="text-gray-600 hover:text-blue-600 font-medium">Контакты</a>
</nav>
<div class="hidden md:block">
<a href="#" class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-md font-medium transition-all">+7(999)593-68-58</a>
</div>
<div class="md:hidden">
<button id="mobile-menu-button" class="text-gray-600 focus:outline-none">
<div class="hamburger-line"></div>
<div class="hamburger-line"></div>
<div class="hamburger-line"></div>
</button>
</div>
</div>
<div id="mobile-menu" class="mobile-menu md:hidden bg-white">
<div class="px-2 pt-2 pb-4 space-y-1">
<a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-blue-600 hover:bg-gray-50">Home</a>
<a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-blue-600 hover:bg-gray-50">Solutions</a>
<a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-blue-600 hover:bg-gray-50">Services</a>
<a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-blue-600 hover:bg-gray-50">About</a>
<a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-blue-600 hover:bg-gray-50">Contact</a>
<a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-white bg-blue-600 hover:bg-blue-700">Get Started</a>
</div>
</div>
</div>
</header>
<!-- Hero Section -->
<section class="hero-gradient pt-32 pb-20 text-white">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<h1 class="text-4xl md:text-5xl font-bold mb-6">Будущее IT-технологий уже здесь</h1>
<p class="text-xl mb-8 text-blue-100">Передовые решения в области видеонаблюдения, настройки компьютеров и сетевых технологий. Превосходим ожидания клиентов с помощью инновационных подходов и профессионального сервиса.</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<a href="#" class="bg-white text-blue-600 hover:bg-gray-100 px-6 py-3 rounded-md font-bold text-center">Заказать услугу</a>
<a href="#" class="border-2 border-white hover:bg-white hover:text-blue-600 px-6 py-3 rounded-md font-bold text-center">Получить консультацию</a>
</div>
</div>
<div class="md:w-1/2">
<img src="https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Telecommunications" class="rounded-lg shadow-xl">
</div>
</div>
</div>
</section>
<!-- Clients Section -->
<section class="py-12 bg-white">
<div class="container mx-auto px-4">
<p class="text-center text-gray-500 mb-8">Trusted by leading companies worldwide</p>
<div class="flex flex-wrap justify-center items-center gap-8 md:gap-16">
<img src="https://via.placeholder.com/120x40?text=Company+1" alt="Company 1" class="h-8 opacity-60 hover:opacity-100 transition-all">
<img src="https://via.placeholder.com/120x40?text=Company+2" alt="Company 2" class="h-8 opacity-60 hover:opacity-100 transition-all">
<img src="https://via.placeholder.com/120x40?text=Company+3" alt="Company 3" class="h-8 opacity-60 hover:opacity-100 transition-all">
<img src="https://via.placeholder.com/120x40?text=Company+4" alt="Company 4" class="h-8 opacity-60 hover:opacity-100 transition-all">
<img src="https://via.placeholder.com/120x40?text=Company+5" alt="Company 5" class="h-8 opacity-60 hover:opacity-100 transition-all">
</div>
</div>
</section>
<!-- Features Section -->
<section class="py-20 bg-gray-50">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-800 mb-4">Наши услуги</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Комплексные IT-решения для бизнеса и частных клиентов. Используем только передовые технологии и проверенное оборудование.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="bg-white p-8 rounded-xl shadow-md feature-card transition-all">
<div class="w-14 h-14 bg-blue-100 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-phone-alt text-blue-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Видеонаблюдение под ключ</h3>
<p class="text-gray-600 mb-4">Современные системы видеонаблюдения с ИИ-аналитикой, облачным хранением и удаленным доступом. От проектирования до технического обслуживания.</p>
<a href="#" class="text-blue-600 font-medium flex items-center">
Узнать подробнее
<i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<!-- Feature 2 -->
<div class="bg-white p-8 rounded-xl shadow-md feature-card transition-all">
<div class="w-14 h-14 bg-blue-100 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-network-wired text-blue-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Настройка компьютеров</h3>
<p class="text-gray-600 mb-4">Профессиональная настройка ПК, серверов и рабочих станций. Оптимизация производительности, установка ПО, обновление железа.</p>
<a href="#" class="text-blue-600 font-medium flex items-center">
Узнать подробнее
<i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<!-- Feature 3 -->
<div class="bg-white p-8 rounded-xl shadow-md feature-card transition-all">
<div class="w-14 h-14 bg-blue-100 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-cloud text-blue-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Компьютерные сети и Wi-Fi</h3>
<p class="text-gray-600 mb-4">Построение корпоративных сетей, настройка Wi-Fi 6/7, VPN-решения и сетевая безопасность. Стабильное подключение для бизнеса.</p>
<a href="#" class="text-blue-600 font-medium flex items-center">
Узнать подробнее
<i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<!-- Feature 4 -->
<div class="bg-white p-8 rounded-xl shadow-md feature-card transition-all">
<div class="w-14 h-14 bg-blue-100 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-shield-alt text-blue-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Security Solutions</h3>
<p class="text-gray-600 mb-4">Comprehensive security measures to protect your communications and data from evolving threats.</p>
<a href="#" class="text-blue-600 font-medium flex items-center">
Learn more
<i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<!-- Feature 5 -->
<div class="bg-white p-8 rounded-xl shadow-md feature-card transition-all">
<div class="w-14 h-14 bg-blue-100 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-mobile-alt text-blue-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Mobile Integration</h3>
<p class="text-gray-600 mb-4">Seamless integration of mobile devices with your business communication systems for true mobility.</p>
<a href="#" class="text-blue-600 font-medium flex items-center">
Learn more
<i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<!-- Feature 6 -->
<div class="bg-white p-8 rounded-xl shadow-md feature-card transition-all">
<div class="w-14 h-14 bg-blue-100 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-headset text-blue-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">24/7 Support</h3>
<p class="text-gray-600 mb-4">Dedicated support team available around the clock to ensure your systems are always running smoothly.</p>
<a href="#" class="text-blue-600 font-medium flex items-center">
Learn more
<i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section class="py-20 bg-white">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0 md:pr-10">
<img src="https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Our Team" class="rounded-lg shadow-xl">
</div>
<div class="md:w-1/2">
<h2 class="text-3xl font-bold text-gray-800 mb-6">About Next-Tel Systems</h2>
<p class="text-gray-600 mb-6">Founded in 2005, Next-Tel Systems has been at the forefront of business telecommunications innovation. Our team of experts brings together decades of experience in designing, implementing, and supporting communication solutions for businesses of all sizes.</p>
<p class="text-gray-600 mb-8">We pride ourselves on delivering customized solutions that address the unique challenges of each client, helping them achieve greater efficiency, productivity, and cost savings through optimized communication systems.</p>
<div class="grid grid-cols-2 gap-4 mb-8">
<div class="flex items-center">
<i class="fas fa-check-circle text-blue-600 mr-2"></i>
<span class="font-medium">20+ Years Experience</span>
</div>
<div class="flex items-center">
<i class="fas fa-check-circle text-blue-600 mr-2"></i>
<span class="font-medium">500+ Clients Served</span>
</div>
<div class="flex items-center">
<i class="fas fa-check-circle text-blue-600 mr-2"></i>
<span class="font-medium">24/7 Technical Support</span>
</div>
<div class="flex items-center">
<i class="fas fa-check-circle text-blue-600 mr-2"></i>
<span class="font-medium">Custom Solutions</span>
</div>
</div>
<a href="#" class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-md font-bold inline-block">Learn More About Us</a>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section class="py-20 bg-gray-50">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-800 mb-4">What Our Clients Say</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Hear from businesses that have transformed their communications with our solutions.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="bg-white p-8 rounded-xl shadow-md">
<div class="flex items-center mb-4">
<div class="text-yellow-400 mr-2">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<p class="text-gray-600 mb-6">"Next-Tel Systems completely transformed our business communications. Their VoIP solution reduced our costs by 40% while improving call quality and reliability."</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Sarah Johnson" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold text-gray-800">Sarah Johnson</h4>
<p class="text-gray-500">CEO, TechSolutions Inc.</p>
</div>
</div>
</div>
<!-- Testimonial 2 -->
<div class="bg-white p-8 rounded-xl shadow-md">
<div class="flex items-center mb-4">
<div class="text-yellow-400 mr-2">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<p class="text-gray-600 mb-6">"The network infrastructure designed by Next-Tel has been flawless. We've experienced zero downtime since implementation, which is critical for our operations."</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Michael Chen" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold text-gray-800">Michael Chen</h4>
<p class="text-gray-500">CTO, Global Retail Corp</p>
</div>
</div>
</div>
<!-- Testimonial 3 -->
<div class="bg-white p-8 rounded-xl shadow-md">
<div class="flex items-center mb-4">
<div class="text-yellow-400 mr-2">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
</div>
<p class="text-gray-600 mb-6">"Their support team is exceptional. Any issues we've had were resolved quickly, often before we even noticed there was a problem. Truly proactive service."</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Emily Rodriguez" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold text-gray-800">Emily Rodriguez</h4>
<p class="text-gray-500">Director of Operations, HealthFirst</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-20 bg-blue-600 text-white">
<div class="container mx-auto px-4 text-center">
<h2 class="text-3xl font-bold mb-6">Готовы начать проект?</h2>
<p class="text-xl mb-8 max-w-3xl mx-auto text-blue-100">Получите бесплатную консультацию и персональное предложение для вашей задачи</p>
<div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4">
<a href="#" class="bg-white text-blue-600 hover:bg-gray-100 px-8 py-4 rounded-md font-bold text-lg">Бесплатная консультация</a>
<a href="#" class="border-2 border-white hover:bg-white hover:text-blue-600 px-8 py-4 rounded-md font-bold text-lg">Посмотреть портфолио</a>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white pt-16 pb-8">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-12 mb-12">
<!-- Company Info -->
<div>
<div class="flex items-center mb-6">
<div class="w-10 h-10 bg-blue-600 rounded-md flex items-center justify-center mr-3">
<span class="text-white font-bold text-xl">NT</span>
</div>
<span class="text-xl font-bold">TelSystemsPro</span>
</div>
<p class="text-gray-400 mb-4">Технологии будущего. Мы создаем передовые IT-решения, которые помогают бизнесу и частным клиентам оставаться на шаг впереди в мире высоких технологий.</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-linkedin-in"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-instagram"></i></a>
</div>
</div>
<!-- Solutions -->
<div>
<h3 class="text-lg font-bold mb-6">Solutions</h3>
<ul class="space-y-3">
<li><a href="#" class="text-gray-400 hover:text-white">VoIP Phone Systems</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Cloud Communications</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Network Infrastructure</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Unified Communications</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Contact Center Solutions</a></li>
</ul>
</div>
<!-- Services -->
<div>
<h3 class="text-lg font-bold mb-6">Services</h3>
<ul class="space-y-3">
<li><a href="#" class="text-gray-400 hover:text-white">Consulting</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Implementation</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Managed Services</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">24/7 Support</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Training</a></li>
</ul>
</div>
<!-- Contact -->
<div>
<h3 class="text-lg font-bold mb-6">Contact Us</h3>
<ul class="space-y-3">
<li class="flex items-start">
<i class="fas fa-map-marker-alt text-gray-400 mr-3 mt-1"></i>
<span class="text-gray-400">г. Москва, ул. Примерная, д. 123</span>
</li>
<li class="flex items-center">
<i class="fas fa-phone-alt text-gray-400 mr-3"></i>
<span class="text-gray-400">+7(999)593-68-58</span>
</li>
<li class="flex items-center">
<i class="fas fa-envelope text-gray-400 mr-3"></i>
<span class="text-gray-400">info@telsystems.pro</span>
</li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 mb-4 md:mb-0">© 2025 TelSystemsPro. Все права защищены.</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white">Политика конфиденциальности</a>
<a href="#" class="text-gray-400 hover:text-white">Условия использования</a>
</div>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
const mobileMenuButton = document.getElementById('mobile-menu-button');
const mobileMenu = document.getElementById('mobile-menu');
mobileMenuButton.addEventListener('click', () => {
mobileMenu.classList.toggle('open');
// Animate hamburger icon
const lines = mobileMenuButton.querySelectorAll('.hamburger-line');
if (mobileMenu.classList.contains('open')) {
lines[0].style.transform = 'rotate(45deg) translate(5px, 5px)';
lines[1].style.opacity = '0';
lines[2].style.transform = 'rotate(-45deg) translate(5px, -5px)';
} else {
lines[0].style.transform = 'rotate(0) translate(0)';
lines[1].style.opacity = '1';
lines[2].style.transform = 'rotate(0) translate(0)';
}
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if (targetId === '#') return;
const targetElement = document.querySelector(targetId);
if (targetElement) {
window.scrollTo({
top: targetElement.offsetTop - 80,
behavior: 'smooth'
});
// Close mobile menu if open
if (mobileMenu.classList.contains('open')) {
mobileMenu.classList.remove('open');
const lines = mobileMenuButton.querySelectorAll('.hamburger-line');
lines[0].style.transform = 'rotate(0) translate(0)';
lines[1].style.opacity = '1';
lines[2].style.transform = 'rotate(0) translate(0)';
}
}
});
});
// Add shadow to header on scroll
window.addEventListener('scroll', () => {
const header = document.querySelector('header');
if (window.scrollY > 10) {
header.classList.add('shadow-md');
} else {
header.classList.remove('shadow-md');
}
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Mureskae/telsystemspro" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |