Files
profile-front/src/components/Header/Header.astro

30 lines
577 B
Plaintext
Raw Normal View History

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
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>
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>