add social button

This commit is contained in:
olilovedani 2025-04-13 12:18:06 +00:00
parent 6a1a273015
commit 1d7d611282
2 changed files with 22 additions and 0 deletions

View File

@ -475,6 +475,19 @@ footer {
padding: 30px 0;
text-align: center;
}
.social-links {
display: flex;
justify-content: center;
gap: 30px;
margin-bottom: 20px;
}
.social-link {
color: white;
transition: color 0.3s ease;
}
.social-link:hover {
color: var(--primary);
}
/* Responsive */
@media (max-width: 1024px) {

View File

@ -6,6 +6,7 @@
<title>Telmi - умные часы, которые говорят за вас!</title>
<meta name="description" content="Умные часы Telmi помогают людям с особенностями речи легко общаться с миром. Решение для детей и взрослых с нарушениями коммуникации.">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body>
<!-- Navigation Menu -->
@ -197,6 +198,14 @@
<!-- Footer -->
<footer>
<div class="container">
<div class="social-links">
<a href="https://t.me/+34665091289" class="social-link" target="_blank">
<i class="fab fa-telegram fa-4x"></i>
</a>
<a href="https://wa.me/34665091289" class="social-link" target="_blank">
<i class="fab fa-whatsapp fa-4x"></i>
</a>
</div>
<p>© 2025 Telmi. Все права защищены.</p>
<p>support@mytelmi.ru</p>
</div>