feat(footer): подпись о техническом партнёре + Speculation Rules
All checks were successful
deploy / deploy (push) Successful in 1m3s

- Footer.astro: добавлена подпись "Сайт разработан и сопровождается
  техническим партнёром — ООО «АйТи Решения»" со ссылкой на hhivp.com
  (по образу stbolshevik.ru/partners/).
- global.css: стиль .developer (light text 0.78rem с dashed-подчёркнутой
  ссылкой).
- Base.astro: добавлен Speculation Rules API inline в <head> для
  пререндера same-origin ссылок на hover/pointerdown (Chromium 122+).
This commit is contained in:
Dmitry Gusev
2026-05-23 23:56:31 +03:00
parent 381a9a90a4
commit 8ce20825f6
3 changed files with 35 additions and 0 deletions

View File

@@ -55,6 +55,26 @@ const jsonLd = {
<script type="application/ld+json" is:inline set:html={JSON.stringify(jsonLd)} />
<!--
Speculation Rules API (Chromium 122+) — prerender same-origin pages on
hover/pointerdown for near-instant navigation. Только / и /privacy/ —
eagerness moderate.
-->
<script type="speculationrules" is:inline set:html={JSON.stringify({
prerender: [
{
where: {
and: [
{ href_matches: '/*' },
{ not: { href_matches: '/_astro/*' } },
{ not: { href_matches: '/sitemap*' } }
]
},
eagerness: 'moderate'
}
]
})} />
<Analytics />
</head>
<body>