Add logo.png and favicon.ico, update nav/footer/JSON-LD
This commit is contained in:
@@ -2,6 +2,7 @@
|
|||||||
<html lang="ru">
|
<html lang="ru">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
|
<link rel="icon" href="/favicon.ico" sizes="any" />
|
||||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
|
||||||
@@ -49,7 +50,7 @@
|
|||||||
"alternateName": "SysadminGroup",
|
"alternateName": "SysadminGroup",
|
||||||
"description": "IT-аутсорсинг, кибербезопасность и техническая поддержка для бизнеса в Пушкино и Московской области.",
|
"description": "IT-аутсорсинг, кибербезопасность и техническая поддержка для бизнеса в Пушкино и Московской области.",
|
||||||
"url": "https://sag24.ru",
|
"url": "https://sag24.ru",
|
||||||
"logo": "https://sag24.ru/favicon.svg",
|
"logo": "https://sag24.ru/logo.png",
|
||||||
"image": "https://sag24.ru/og-image.svg",
|
"image": "https://sag24.ru/og-image.svg",
|
||||||
"telephone": ["+74953637476", "+74953637335", "+74959454456"],
|
"telephone": ["+74953637476", "+74953637335", "+74959454456"],
|
||||||
"email": "info@sag24.ru",
|
"email": "info@sag24.ru",
|
||||||
@@ -94,7 +95,7 @@
|
|||||||
"url": "https://sag24.ru",
|
"url": "https://sag24.ru",
|
||||||
"logo": {
|
"logo": {
|
||||||
"@type": "ImageObject",
|
"@type": "ImageObject",
|
||||||
"url": "https://sag24.ru/favicon.svg"
|
"url": "https://sag24.ru/logo.png"
|
||||||
},
|
},
|
||||||
"contactPoint": {
|
"contactPoint": {
|
||||||
"@type": "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 (
|
return (
|
||||||
<footer className="bg-slate-900 text-slate-400 py-10">
|
<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">
|
<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>
|
<span className="text-sm">{year} © {t('footer.rights')}</span>
|
||||||
<div className="flex flex-wrap justify-center gap-x-6 gap-y-1 text-sm">
|
<div className="flex flex-wrap justify-center gap-x-6 gap-y-1 text-sm">
|
||||||
{phones.map((p, i) => (
|
{phones.map((p, i) => (
|
||||||
|
|||||||
@@ -22,8 +22,8 @@ export default function Navigation() {
|
|||||||
return (
|
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'}`}>
|
<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">
|
<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>
|
</a>
|
||||||
|
|
||||||
{/* Desktop nav */}
|
{/* Desktop nav */}
|
||||||
|
|||||||
Reference in New Issue
Block a user