File size: 10,545 Bytes
f7e6e0b | 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 | <!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Traffic Master - Contacts & Footer</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@400;500;700;900&display=swap');
body {
font-family: 'Inter', sans-serif;
background-color: #0a0a0a;
color: #E1E1E1;
overflow-x: hidden;
}
.glow-text {
text-shadow: 0 0 10px rgba(246, 252, 121, 0.7);
}
.glow-box {
box-shadow: 0 0 15px rgba(246, 252, 121, 0.5);
}
.glow-box:hover {
box-shadow: 0 0 25px rgba(246, 252, 121, 0.8);
}
.border-glow {
border-color: #f6fc79;
box-shadow: 0 0 10px rgba(246, 252, 121, 0.3);
}
.border-glow:hover {
box-shadow: 0 0 20px rgba(246, 252, 121, 0.5);
}
.pulse {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { transform: scale(1); opacity: 1; }
50% { transform: scale(1.05); opacity: 0.8; }
100% { transform: scale(1); opacity: 1; }
}
.nav-link {
position: relative;
transition: all 0.3s ease;
}
.nav-link:hover {
text-shadow: 0 0 10px rgba(246, 252, 121, 0.7);
color: #f6fc79 !important;
}
.footer-divider {
height: 1px;
background: linear-gradient(90deg, rgba(246, 252, 121, 0), rgba(246, 252, 121, 0.5), rgba(246, 252, 121, 0));
}
.social-btn {
transition: all 0.3s ease;
animation: fadeIn 0.5s ease-out;
}
.social-btn:hover {
transform: scale(1.05);
color: #f6fc79 !important;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
.phone-icon {
animation: phoneRing 1.5s ease infinite;
transform-origin: center 70%;
}
@keyframes phoneRing {
0% { transform: rotate(0deg); }
5% { transform: rotate(15deg); }
10% { transform: rotate(-15deg); }
15% { transform: rotate(10deg); }
20% { transform: rotate(-10deg); }
25% { transform: rotate(5deg); }
30% { transform: rotate(-5deg); }
35% { transform: rotate(0deg); }
100% { transform: rotate(0deg); }
}
.particle {
position: absolute;
background-color: rgba(246, 252, 121, 0.6);
border-radius: 50%;
pointer-events: none;
}
</style>
</head>
<body>
<!-- Contacts + Footer Block -->
<div class="relative w-full bg-[#0a0a0a] pt-12 pb-6 overflow-hidden">
<!-- Particles Background -->
<div id="particles" class="absolute top-0 left-0 w-full h-full pointer-events-none"></div>
<!-- Contacts Section -->
<div class="container mx-auto px-4 mb-8">
<div class="text-center mb-10">
<h2 class="text-3xl md:text-4xl font-bold uppercase text-[#f6fc79] mb-4">
<i class="fas fa-phone-alt phone-icon mr-2"></i> Связаться с нами
</h2>
<p class="text-gray-400 max-w-2xl mx-auto">Мы всегда рады помочь вам с любыми вопросами. Выберите удобный способ связи:</p>
</div>
<!-- Social Buttons -->
<div class="flex flex-wrap justify-center gap-4 md:gap-8 mb-12">
<!-- Instagram -->
<a href="#" class="social-btn border-glow border rounded-2xl px-6 py-3 flex items-center gap-2 text-[#f6fc79] hover:glow-box">
<i class="fab fa-instagram text-xl"></i>
<span>Instagram</span>
</a>
<!-- Telegram -->
<a href="#" class="social-btn border-glow border rounded-2xl px-6 py-3 flex items-center gap-2 text-[#f6fc79] hover:glow-box">
<i class="fab fa-telegram text-xl"></i>
<span>Telegram</span>
</a>
<!-- WhatsApp -->
<a href="#" class="social-btn border-glow border rounded-2xl px-6 py-3 flex items-center gap-2 text-[#f6fc79] hover:glow-box">
<i class="fab fa-whatsapp text-xl"></i>
<span>WhatsApp</span>
</a>
</div>
</div>
<!-- Divider -->
<div class="footer-divider w-full my-8"></div>
<!-- Footer Section -->
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row justify-between items-center md:items-start gap-8">
<!-- Logo & Copyright -->
<div class="text-center md:text-left">
<div class="flex items-center justify-center md:justify-start gap-2 mb-2">
<i class="fas fa-traffic-light text-[#f6fc79]"></i>
<span class="font-bold text-lg">Traffic Master</span>
</div>
<p class="text-gray-500 text-sm">© 2025 Все права защищены</p>
</div>
<!-- Quick Links -->
<div class="text-center md:text-left">
<h3 class="text-gray-300 font-medium mb-3">Быстрые ссылки</h3>
<div class="flex flex-col md:flex-row gap-4 md:gap-6">
<a href="#hero" class="nav-link text-gray-400 hover:text-[#f6fc79]">Главная</a>
<a href="#program" class="nav-link text-gray-400 hover:text-[#f6fc79]">Программа курса</a>
<a href="#reviews" class="nav-link text-gray-400 hover:text-[#f6fc79]">Отзывы</a>
<a href="#pricing" class="nav-link text-gray-400 hover:text-[#f6fc79]">Тарифы</a>
<a href="#contacts" class="nav-link text-gray-400 hover:text-[#f6fc79]">Контакты</a>
</div>
</div>
<!-- Contact Info -->
<div class="text-center md:text-left">
<h3 class="text-gray-300 font-medium mb-3">Контакты</h3>
<div class="flex flex-col gap-2 text-gray-400">
<p><i class="fas fa-phone-alt mr-2 text-[#f6fc79]"></i> +7 (123) 456-78-90</p>
<p><i class="fas fa-envelope mr-2 text-[#f6fc79]"></i> info@trafficmaster.com</p>
</div>
</div>
</div>
<!-- Legal Links -->
<div class="mt-12 text-center">
<div class="flex flex-wrap justify-center gap-4 text-xs text-gray-600">
<a href="#" class="hover:text-gray-400">Политика конфиденциальности</a>
<span>|</span>
<a href="#" class="hover:text-gray-400">Пользовательское соглашение</a>
<span>|</span>
<a href="#" class="hover:text-gray-400">Cookie Policy</a>
</div>
</div>
</div>
</div>
<script>
// Create particles for background
document.addEventListener('DOMContentLoaded', function() {
const particlesContainer = document.getElementById('particles');
const particleCount = 30;
for (let i = 0; i < particleCount; i++) {
const particle = document.createElement('div');
particle.classList.add('particle');
// Random size between 1px and 3px
const size = Math.random() * 2 + 1;
particle.style.width = `${size}px`;
particle.style.height = `${size}px`;
// Random position
particle.style.left = `${Math.random() * 100}%`;
particle.style.top = `${Math.random() * 100}%`;
// Random opacity
particle.style.opacity = Math.random() * 0.5 + 0.1;
// Animation
const duration = Math.random() * 20 + 10;
particle.style.animation = `float ${duration}s linear infinite`;
// Add to container
particlesContainer.appendChild(particle);
}
// Add floating animation
const style = document.createElement('style');
style.innerHTML = `
@keyframes float {
0% { transform: translateY(0) translateX(0); }
25% { transform: translateY(-20px) translateX(10px); }
50% { transform: translateY(-40px) translateX(0); }
75% { transform: translateY(-20px) translateX(-10px); }
100% { transform: translateY(0) translateX(0); }
}
`;
document.head.appendChild(style);
});
</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=timoon811/block11tm" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |