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

4
public/hhivp-mark.svg Normal file
View File

@@ -0,0 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" role="img" aria-label="hhivp">
<rect width="32" height="32" rx="7" fill="currentColor"/>
<text x="16" y="24" font-family="-apple-system,BlinkMacSystemFont,Inter,Roboto,Arial,sans-serif" font-size="22" font-weight="700" text-anchor="middle" fill="#fff" letter-spacing="-1">h</text>
</svg>

After

Width:  |  Height:  |  Size: 352 B

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>