2025-12-11 01:12:45 +03:00
|
|
|
|
---
|
|
|
|
|
|
|
2026-02-27 00:12:33 +03:00
|
|
|
|
const { category } = Astro.props;
|
|
|
|
|
|
|
2025-12-11 01:12:45 +03:00
|
|
|
|
import Stores from './LazyStores.astro';
|
2025-12-17 23:05:49 +03:00
|
|
|
|
import MainMenu from '@components/MainMenu.astro';
|
2025-12-11 01:12:45 +03:00
|
|
|
|
|
2026-01-25 01:00:24 +03:00
|
|
|
|
const MENU_ID = 3340; // 103246 (бургер 1). 103247 (бургер 2 )
|
2025-12-11 01:12:45 +03:00
|
|
|
|
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">
|
2026-02-27 00:12:33 +03:00
|
|
|
|
{category && (
|
|
|
|
|
|
<div class="parttile-block">
|
|
|
|
|
|
{category.name}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)}
|
2025-12-11 01:12:45 +03:00
|
|
|
|
<Stores />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
2025-12-17 23:05:49 +03:00
|
|
|
|
<MainMenu menuId={MENU_ID} />
|
|
|
|
|
|
|
2025-12-11 01:12:45 +03:00
|
|
|
|
</header>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
|
|
|
|
|
|
|
.top-bar{
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
</style>
|