27 lines
491 B
Plaintext
27 lines
491 B
Plaintext
|
|
---
|
||
|
|
|
||
|
|
import Stores from './LazyStores.astro';
|
||
|
|
|
||
|
|
const MENU_ID = 103245;
|
||
|
|
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">
|
||
|
|
<Stores />
|
||
|
|
</div>
|
||
|
|
|
||
|
|
</header>
|
||
|
|
|
||
|
|
|
||
|
|
<style>
|
||
|
|
|
||
|
|
.top-bar{
|
||
|
|
display: flex;
|
||
|
|
justify-content: space-between;
|
||
|
|
}
|
||
|
|
|
||
|
|
</style>
|