2021-10-21 17:23:33 +03:00

35 lines
816 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

export default function Header()
{
return (
<header>
<div className="container">
<a href="#" className="logo">
<img src="/assets/images/logo.svg" alt="" width="217px" height="32px" />
</a>
<div className="header_menu">
<nav>
<ul>
<li>
<a href="#">Программы</a>
</li>
<li>
<a href="#">Спецпредложения</a>
</li>
<li>
<a href="#">Сервисы</a>
</li>
<li>
<a href="#">Каталог автомобилей</a>
</li>
<li>
<a href="#" className="active">О компании</a>
</li>
</ul>
</nav>
<a href="tel:+74950000000">+7 495 000 00 00</a>
</div>
<a href="#" className="lk" title="Личный кабинет"></a>
</div>
</header>
)
}