Добавить секцию клиентов (15 компаний)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-14 05:33:11 +03:00
parent 3cb42a4466
commit 27169b6a65
3 changed files with 41 additions and 0 deletions

View File

@@ -109,6 +109,39 @@ export default function Home() {
</div>
</section>
{/* Clients */}
<section className="py-16 bg-white border-t border-slate-100">
<div className="max-w-6xl mx-auto px-4 sm:px-6">
<div className="text-center mb-10">
<h2 className="text-2xl sm:text-3xl font-bold text-slate-900 mb-2">{t('clients.title')}</h2>
<p className="text-slate-500">{t('clients.subtitle')}</p>
</div>
<div className="flex flex-wrap justify-center gap-3">
{[
'ООО «Бастион-Сервис»',
'АО «Стифтер Хаус»',
'ООО «Вэйстроймастер»',
'ООО «Комплекс»',
'ООО «Пит Стоп»',
'ООО «Астида-М»',
'ФАУ ДПО ВИПКЛХ',
'ООО «Грейт Групп»',
'АО «Дельта»',
'ООО «Глобал»',
'ООО «Навант»',
'ООО «ТД Адонит»',
'ООО «Экопродукт»',
'ООО «Астида»',
'ДПК «Сосновый бор»',
].map(name => (
<span key={name} className="bg-slate-50 border border-slate-200 rounded-lg px-4 py-2 text-sm text-slate-700 hover:border-blue-200 hover:text-slate-900 transition-colors">
{name}
</span>
))}
</div>
</div>
</section>
{/* Partners */}
<section className="py-16 bg-slate-50 border-t border-slate-100">
<div className="max-w-6xl mx-auto px-4 sm:px-6">

View File

@@ -57,6 +57,10 @@ export const en = {
title: 'Partners',
subtitle: 'We work with trusted suppliers and vendors',
},
clients: {
title: 'Trusted by',
subtitle: 'Companies that chose SysadminGroup',
},
footer: {
rights: 'All rights reserved.',
},

View File

@@ -57,6 +57,10 @@ export const ru = {
title: 'Партнёры',
subtitle: 'Работаем с надёжными поставщиками и вендорами',
},
clients: {
title: 'Нам доверяют',
subtitle: 'Компании, которые выбрали Сисадмингрупп',
},
footer: {
rights: 'Все права защищены.',
},