feat(footer): visible credit с маркой hhivp вместо длинного юр.лица
All checks were successful
deploy / deploy (push) Successful in 1m5s

SVG-mark 18px + «Разработка — hhivp.com» вместо «ООО АйТи Решения».
hhivp.com лучше для SEO direct match и memorability.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
striker
2026-05-24 06:36:02 +03:00
parent 3d42a588d4
commit 3868774a2b
2 changed files with 22 additions and 5 deletions

View File

@@ -14,8 +14,10 @@ const year = new Date().getFullYear();
</div>
</div>
<div class="container dev-credit">
Сайт разработан и сопровождается техническим партнёром&nbsp;—{' '}
<a href="https://hhivp.com/" target="_blank" rel="noopener">ООО «АйТи Решения»</a>
<a href="https://hhivp.com/" target="_blank" rel="noopener" class="dev-credit-link">
<img src="/hhivp-mark.svg" alt="" width="18" height="18" class="dev-credit-mark" />
<span>Разработка&nbsp;— hhivp.com</span>
</a>
</div>
</footer>
@@ -44,10 +46,21 @@ const year = new Date().getFullYear();
opacity: 0.7;
text-align: center;
}
.dev-credit a {
.dev-credit-link {
display: inline-flex;
align-items: center;
gap: 0.45rem;
color: inherit;
border-bottom: 1px dashed currentColor;
text-decoration: none;
}
.dev-credit a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.dev-credit-link:hover { color: var(--accent); }
.dev-credit-link:hover span { border-bottom-color: var(--accent); }
.dev-credit-link span {
border-bottom: 1px dashed currentColor;
}
.dev-credit-mark {
flex-shrink: 0;
display: block;
color: currentColor;
}
</style>