37 lines
778 B
Plaintext
37 lines
778 B
Plaintext
---
|
||
|
||
const { category } = Astro.props;
|
||
|
||
import Stores from './LazyStores.astro';
|
||
import MainMenu from '@components/MainMenu.astro';
|
||
|
||
const MENU_ID = 3340; // 103246 (бургер 1). 103247 (бургер 2 )
|
||
let menuItems = [];
|
||
|
||
---
|
||
|
||
<header class="header" itemscope itemtype="https://schema.org/WPHeader">
|
||
|
||
<div class="top-bar">
|
||
<img alt="Профиль" width="249" height="55" src="https://cdn.profile.ru/wp-content/themes/profile/assets/img/profile-logo-delovoy.svg">
|
||
{category && (
|
||
<div class="parttile-block">
|
||
{category.name}
|
||
</div>
|
||
)}
|
||
<Stores />
|
||
</div>
|
||
|
||
<MainMenu menuId={MENU_ID} />
|
||
|
||
</header>
|
||
|
||
|
||
<style>
|
||
|
||
.top-bar{
|
||
display: flex;
|
||
justify-content: space-between;
|
||
}
|
||
|
||
</style> |