diff --git a/app/components/About.tsx b/app/components/About.tsx index bf35d1b..9a914b1 100644 --- a/app/components/About.tsx +++ b/app/components/About.tsx @@ -104,7 +104,7 @@ const About = () => {

- Более 9 лет на рынке + Более 11 лет на рынке

Многолетний опыт работы позволяет нам решать задачи любой @@ -211,20 +211,20 @@ const About = () => { variants={containerVariants} > -

9+
+
11+
лет опыта
-
500+
+
1500+
проектов
-
50+
-
экспертов
+
100%
+
бесплатная юр. консультация
-
98%
-
довольных клиентов
+
0
+
скрытых услуг и доплат
diff --git a/app/components/Contacts.tsx b/app/components/Contacts.tsx index 2fc7e45..1f9a074 100644 --- a/app/components/Contacts.tsx +++ b/app/components/Contacts.tsx @@ -14,7 +14,7 @@ import { const cityContacts = { Москва: { - address: 'г. Москва, ул. Пресненская, д. 6, стр. 2', + address: 'г. Москва, ул. Космонавта Волкова, д. 29к1', phone: '+7 (916) 830-58-58', email: 'ckeproekt@yandex.ru', workHours: 'ПН-ПТ: 8:00 - 20:00', @@ -223,7 +223,7 @@ const Contacts = ({ selectedCity }: ContactsProps) => { Время работы

{cityData.workHours}

-

Сб-Вс: выходной

+

Сб-Вс: 8:00 - 18:00

diff --git a/app/components/Footer.tsx b/app/components/Footer.tsx index 7253129..a00fba8 100644 --- a/app/components/Footer.tsx +++ b/app/components/Footer.tsx @@ -86,7 +86,7 @@ const Footer = ({ selectedCity }: FooterProps) => { >
-

ЦКЕ

+

ЦКЭ

Центр комплексных экспертиз

@@ -182,7 +182,7 @@ const Footer = ({ selectedCity }: FooterProps) => { className="flex flex-col md:flex-row justify-between items-center gap-4 text-sm text-gray-500" >
- © {new Date().getFullYear()} ЦКЕ - Центр комплексных экспертиз. + © {new Date().getFullYear()} ЦКЭ - Центр комплексных экспертиз. Все права защищены
diff --git a/app/components/Header.tsx b/app/components/Header.tsx index 7824015..33211dd 100644 --- a/app/components/Header.tsx +++ b/app/components/Header.tsx @@ -73,7 +73,7 @@ const Header = ({ selectedCity, onCityChange }: HeaderProps) => { >
- ЦКЕ + ЦКЭ Центр комплексных экспертиз diff --git a/app/components/Hero.tsx b/app/components/Hero.tsx index c5a9d70..5815fc8 100644 --- a/app/components/Hero.tsx +++ b/app/components/Hero.tsx @@ -10,7 +10,11 @@ import { sendTelegramNotification } from '@/lib/telegram'; import ContactModal from './ContactModal'; import { cn } from '@/lib/utils'; -const Hero = () => { +interface HeroProps { + selectedCity: 'Москва' | 'Чебоксары'; +} + +const Hero = ({ selectedCity }: HeroProps) => { const [phone, setPhone] = useState(''); const [isSubmitted, setIsSubmitted] = useState(false); const [error, setError] = useState(''); @@ -93,6 +97,11 @@ const Hero = () => { />
+ {/* Заглушка-предупреждение */} +
+ Нужна баннерная фотография для этого раздела +
+ { className="text-3xl sm:text-4xl md:text-5xl font-bold leading-tight" variants={itemVariants} > - Независимая строительно-техническая экспертиза в Москве и Чебоксарах + Независимая строительно-техническая экспертиза в{' '} + {selectedCity === 'Москва' ? 'Москве' : 'Чебоксарах'} {/* Описание */} @@ -186,16 +196,16 @@ const Hero = () => { variants={itemVariants} >
-

9+ лет

+

11+ лет

опыта в экспертизе

-

500+

+

1500+

выполненных проектов

100%

-

гарантия качества

+

фиксированная цена без доплат

diff --git a/app/components/Services.tsx b/app/components/Services.tsx index 8e85c42..a24ec6d 100644 --- a/app/components/Services.tsx +++ b/app/components/Services.tsx @@ -11,10 +11,12 @@ import { Building, FlaskConical, ArrowRight, + FileText, } from 'lucide-react'; import { Button } from '@/components/ui/button'; import ContactModal from './ContactModal'; import Link from 'next/link'; +import Image from 'next/image'; export const services = [ { @@ -29,6 +31,7 @@ export const services = [ 'Расчет стоимости восстановительных работ', 'Составление экспертного заключения', ], + image: '/images/placeholders/services/flood-expertise.jpg', }, { icon: Waves, @@ -42,6 +45,7 @@ export const services = [ 'Оценка состояния коммуникаций', 'Рекомендации по ремонту', ], + image: '/images/placeholders/services/sewerage-inspection.jpg', }, { icon: Home, @@ -55,6 +59,7 @@ export const services = [ 'Анализ микроклимата', 'Подготовка документации', ], + image: '/images/placeholders/services/house-recognition.jpg', }, { icon: CheckSquare, @@ -68,6 +73,7 @@ export const services = [ 'Выявление дефектов', 'Рекомендации по устранению', ], + image: '/images/placeholders/services/renovation-expertise.jpg', }, { icon: Thermometer, @@ -81,6 +87,7 @@ export const services = [ 'Выявление мостиков холода', 'Рекомендации по утеплению', ], + image: '/images/placeholders/services/thermal-inspection.jpg', }, { icon: Building, @@ -94,6 +101,7 @@ export const services = [ 'Оценка материалов', 'Выявление нарушений', ], + image: '/images/placeholders/services/construction-control.jpg', }, { icon: FlaskConical, @@ -107,6 +115,7 @@ export const services = [ 'Расчет площадей', 'Составление технического паспорта', ], + image: '/images/placeholders/services/room-measurement.jpg', }, ]; @@ -202,6 +211,26 @@ const Services = () => { +
+ {service.title} + + + + + +
))} @@ -213,6 +242,11 @@ const Services = () => {
Все консультации бесплатны.

+

+ Примечание: Для каждой услуги необходимы качественные тематические + фотографии. Пожалуйста, предоставьте соответствующие изображения + для замены заглушек. +