feat(footer): добавить подпись о техническом партнёре (по образу stbolshevik)
All checks were successful
deploy / deploy (push) Successful in 55s

This commit is contained in:
striker
2026-05-24 00:21:31 +03:00
parent 98c91f605b
commit 182040c633

View File

@@ -13,6 +13,10 @@ const year = new Date().getFullYear();
<a href="/privacy/">Политика</a>
</div>
</div>
<div class="container dev-credit">
Сайт разработан и сопровождается техническим партнёром&nbsp;—{' '}
<a href="https://hhivp.com/" target="_blank" rel="noopener">ООО «АйТи Решения»</a>
</div>
</footer>
<style>
@@ -33,4 +37,17 @@ const year = new Date().getFullYear();
.footer-nav { display: flex; gap: 1.25rem; }
.footer-nav a { color: var(--muted); text-decoration: none; }
.footer-nav a:hover { color: var(--accent); }
.dev-credit {
margin-top: 0.75rem;
font-size: 0.74rem;
color: var(--muted);
opacity: 0.7;
text-align: center;
}
.dev-credit a {
color: inherit;
border-bottom: 1px dashed currentColor;
text-decoration: none;
}
.dev-credit a:hover { color: var(--accent); border-bottom-color: var(--accent); }
</style>