Add logo.png and favicon.ico, update nav/footer/JSON-LD
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
<html lang="ru">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" href="/favicon.ico" sizes="any" />
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
|
||||
@@ -49,7 +50,7 @@
|
||||
"alternateName": "SysadminGroup",
|
||||
"description": "IT-аутсорсинг, кибербезопасность и техническая поддержка для бизнеса в Пушкино и Московской области.",
|
||||
"url": "https://sag24.ru",
|
||||
"logo": "https://sag24.ru/favicon.svg",
|
||||
"logo": "https://sag24.ru/logo.png",
|
||||
"image": "https://sag24.ru/og-image.svg",
|
||||
"telephone": ["+74953637476", "+74953637335", "+74959454456"],
|
||||
"email": "info@sag24.ru",
|
||||
@@ -94,7 +95,7 @@
|
||||
"url": "https://sag24.ru",
|
||||
"logo": {
|
||||
"@type": "ImageObject",
|
||||
"url": "https://sag24.ru/favicon.svg"
|
||||
"url": "https://sag24.ru/logo.png"
|
||||
},
|
||||
"contactPoint": {
|
||||
"@type": "ContactPoint",
|
||||
|
||||
BIN
public/favicon.ico
Normal file
BIN
public/favicon.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.1 KiB |
BIN
public/logo.png
Normal file
BIN
public/logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 37 KiB |
@@ -9,7 +9,7 @@ export default function Footer() {
|
||||
return (
|
||||
<footer className="bg-slate-900 text-slate-400 py-10">
|
||||
<div className="max-w-6xl mx-auto px-4 sm:px-6 flex flex-col md:flex-row items-center justify-between gap-4">
|
||||
<span className="text-white font-semibold">Сисадмингрупп</span>
|
||||
<img src="/logo.png" alt="Сисадмингрупп" className="h-7 w-auto brightness-0 invert" />
|
||||
<span className="text-sm">{year} © {t('footer.rights')}</span>
|
||||
<div className="flex flex-wrap justify-center gap-x-6 gap-y-1 text-sm">
|
||||
{phones.map((p, i) => (
|
||||
|
||||
@@ -22,8 +22,8 @@ export default function Navigation() {
|
||||
return (
|
||||
<header className={`fixed top-0 left-0 right-0 z-50 transition-all duration-300 ${scrolled ? 'bg-white/95 backdrop-blur shadow-sm' : 'bg-transparent'}`}>
|
||||
<div className="max-w-6xl mx-auto px-4 sm:px-6 h-16 flex items-center justify-between">
|
||||
<a href="#" className="text-xl font-bold text-slate-900 tracking-tight">
|
||||
Сисадмингрупп
|
||||
<a href="#" className="flex items-center">
|
||||
<img src="/logo.png" alt="Сисадмингрупп" className="h-8 w-auto" />
|
||||
</a>
|
||||
|
||||
{/* Desktop nav */}
|
||||
|
||||
Reference in New Issue
Block a user