chore: change footer logo, company info
This commit is contained in:
BIN
public/logo-white.png
Normal file
BIN
public/logo-white.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 25 KiB |
@@ -12,23 +12,18 @@ export interface FooterProps {
|
|||||||
solutionCategories?: CategoryNavItem[]
|
solutionCategories?: CategoryNavItem[]
|
||||||
}
|
}
|
||||||
|
|
||||||
export function Footer({
|
export function Footer({ siteTitle = '', contacts = [], solutionCategories = [] }: FooterProps) {
|
||||||
siteTitle = '',
|
|
||||||
contacts = [],
|
|
||||||
solutionCategories = [],
|
|
||||||
}: FooterProps) {
|
|
||||||
return (
|
return (
|
||||||
<footer className="bg-gray-900 text-gray-400 pt-20 pb-10 border-t border-gray-800">
|
<footer className="bg-gray-900 text-gray-400 pt-20 pb-10 border-t border-gray-800">
|
||||||
<div className="max-w-400 mx-auto px-6 xl:px-12 2xl:px-16">
|
<div className="max-w-400 mx-auto px-6 xl:px-12 2xl:px-16">
|
||||||
<div className="grid md:grid-cols-2 lg:grid-cols-4 gap-12 mb-12">
|
<div className="grid md:grid-cols-2 lg:grid-cols-4 gap-12 mb-12">
|
||||||
<div>
|
<div>
|
||||||
<div className="flex items-center gap-3 mb-6">
|
<div className="flex items-center gap-3 mb-6">
|
||||||
<div className="w-9 h-9 bg-linear-to-br from-blue-600 to-blue-700 rounded-lg flex items-center justify-center shadow-md">
|
<img src="/logo-white.png" alt={siteTitle} className="h-9 w-auto" />
|
||||||
<div className="w-5 h-5 border-2 border-white rounded"></div>
|
<span className="text-2xl text-white tracking-wide font-bold">{siteTitle}</span>
|
||||||
</div>
|
|
||||||
<span className="text-2xl text-white tracking-tight">{siteTitle}</span>
|
|
||||||
</div>
|
</div>
|
||||||
<p className="mb-6 leading-relaxed">Комплексные IT-решения для развития бизнеса</p>
|
<p className="mb-6 leading-relaxed">Комплексные IT-решения для развития бизнеса</p>
|
||||||
|
{false && (
|
||||||
<div className="flex gap-4">
|
<div className="flex gap-4">
|
||||||
<a
|
<a
|
||||||
href="#"
|
href="#"
|
||||||
@@ -63,6 +58,7 @@ export function Footer({
|
|||||||
<Video className="w-5 h-5" />
|
<Video className="w-5 h-5" />
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
@@ -82,24 +78,16 @@ export function Footer({
|
|||||||
<h4 className="text-white mb-6">Компания</h4>
|
<h4 className="text-white mb-6">Компания</h4>
|
||||||
<ul className="space-y-3">
|
<ul className="space-y-3">
|
||||||
<li>
|
<li>
|
||||||
<a href="#" className="hover:text-blue-400 transition-colors">
|
<span>ООО «Софтклик»</span>
|
||||||
О нас
|
|
||||||
</a>
|
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="#" className="hover:text-blue-400 transition-colors">
|
<span>ИНН 5044121280</span>
|
||||||
Карьера
|
|
||||||
</a>
|
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="#" className="hover:text-blue-400 transition-colors">
|
<span>КПП 504701001</span>
|
||||||
Новости
|
|
||||||
</a>
|
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="#" className="hover:text-blue-400 transition-colors">
|
<span>ОГРН 1215000015394</span>
|
||||||
Партнерам
|
|
||||||
</a>
|
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
@@ -111,18 +99,12 @@ export function Footer({
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="pt-8 border-t border-gray-800 flex flex-col md:flex-row justify-between items-center gap-4">
|
<div className="pt-8 border-t border-gray-800 flex flex-col md:flex-row justify-between items-center gap-4">
|
||||||
<div>© 2025 {siteTitle}. Все права защищены.</div>
|
<div>© 2026 {siteTitle}. Все права защищены.</div>
|
||||||
<div className="flex gap-6">
|
<div className="flex gap-6">
|
||||||
<a
|
<a href="/privacy-policy" className="hover:text-blue-400 transition-colors">
|
||||||
href="/privacy-policy"
|
|
||||||
className="hover:text-blue-400 transition-colors"
|
|
||||||
>
|
|
||||||
Политика конфиденциальности
|
Политика конфиденциальности
|
||||||
</a>
|
</a>
|
||||||
<a
|
<a href="/terms-of-use" className="hover:text-blue-400 transition-colors">
|
||||||
href="/terms-of-use"
|
|
||||||
className="hover:text-blue-400 transition-colors"
|
|
||||||
>
|
|
||||||
Условия использования
|
Условия использования
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user