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[]
|
||||
}
|
||||
|
||||
export function Footer({
|
||||
siteTitle = '',
|
||||
contacts = [],
|
||||
solutionCategories = [],
|
||||
}: FooterProps) {
|
||||
export function Footer({ siteTitle = '', contacts = [], solutionCategories = [] }: FooterProps) {
|
||||
return (
|
||||
<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="grid md:grid-cols-2 lg:grid-cols-4 gap-12 mb-12">
|
||||
<div>
|
||||
<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">
|
||||
<div className="w-5 h-5 border-2 border-white rounded"></div>
|
||||
</div>
|
||||
<span className="text-2xl text-white tracking-tight">{siteTitle}</span>
|
||||
<img src="/logo-white.png" alt={siteTitle} className="h-9 w-auto" />
|
||||
<span className="text-2xl text-white tracking-wide font-bold">{siteTitle}</span>
|
||||
</div>
|
||||
<p className="mb-6 leading-relaxed">Комплексные IT-решения для развития бизнеса</p>
|
||||
{false && (
|
||||
<div className="flex gap-4">
|
||||
<a
|
||||
href="#"
|
||||
@@ -63,6 +58,7 @@ export function Footer({
|
||||
<Video className="w-5 h-5" />
|
||||
</a>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
@@ -82,24 +78,16 @@ export function Footer({
|
||||
<h4 className="text-white mb-6">Компания</h4>
|
||||
<ul className="space-y-3">
|
||||
<li>
|
||||
<a href="#" className="hover:text-blue-400 transition-colors">
|
||||
О нас
|
||||
</a>
|
||||
<span>ООО «Софтклик»</span>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#" className="hover:text-blue-400 transition-colors">
|
||||
Карьера
|
||||
</a>
|
||||
<span>ИНН 5044121280</span>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#" className="hover:text-blue-400 transition-colors">
|
||||
Новости
|
||||
</a>
|
||||
<span>КПП 504701001</span>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#" className="hover:text-blue-400 transition-colors">
|
||||
Партнерам
|
||||
</a>
|
||||
<span>ОГРН 1215000015394</span>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
@@ -111,18 +99,12 @@ export function Footer({
|
||||
</div>
|
||||
|
||||
<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">
|
||||
<a
|
||||
href="/privacy-policy"
|
||||
className="hover:text-blue-400 transition-colors"
|
||||
>
|
||||
<a href="/privacy-policy" className="hover:text-blue-400 transition-colors">
|
||||
Политика конфиденциальности
|
||||
</a>
|
||||
<a
|
||||
href="/terms-of-use"
|
||||
className="hover:text-blue-400 transition-colors"
|
||||
>
|
||||
<a href="/terms-of-use" className="hover:text-blue-400 transition-colors">
|
||||
Условия использования
|
||||
</a>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user