diff --git a/frontend/src/components/home/Hero.astro b/frontend/src/components/home/Hero.astro
index e17bf30..2774849 100644
--- a/frontend/src/components/home/Hero.astro
+++ b/frontend/src/components/home/Hero.astro
@@ -1,48 +1,35 @@
---
import Button from '@components/base/Button.astro';
-// Текстовые константы для удобного редактирования
const badgeText = "ЗАЩИТА ПРАВ ВОДИТЕЛЕЙ В СУРГУТЕ";
const titleWhite = "Защитите свои права";
const titleGold = "и водительское удостоверение";
const description = "Профессиональная юридическая помощь при ДТП, спорах с ГИБДД и страховыми компаниями. Работаем на результат в судах ХМАО-Югры.";
-
const btnPrimary = "Бесплатная консультация";
const btnSecondary = "Наши услуги";
-// Пути к изображениям (замените на свои локальные файлы в папке public/ или src/assets/)
-// Для демо я использую плейсхолдеры
const bgImageUrl = "/images/home/bg_hero.png";
const lawyerImageUrl = "/images/home/heroImg.jpg";
---
-
-
-
-
-
+
{badgeText}
-
{titleWhite} {titleGold}
-
{description}
-
-
-
-
-
-
20+ЛЕТ ОПЫТА В ХМАО
-
-
diff --git a/frontend/src/components/layout/header/Header.astro b/frontend/src/components/layout/header/Header.astro
index 6887a78..9d329f6 100644
--- a/frontend/src/components/layout/header/Header.astro
+++ b/frontend/src/components/layout/header/Header.astro
@@ -1,21 +1,33 @@
---
import Logo from './Logo.astro';
-import LoginButton from './LoginButton.astro';
import Navbar from './Navbar.astro';
import MobileMenu from './MobileMenu.astro';
+import { COMPANY } from '@constants';
---
-