{# @var this \JanusHercules\Shared\Presentation\Component\Header\NavSideLiveComponent #}{% set logoImgSrc = app.user is not null and app.user.hasJoboffererProfile or showJoboffererHeader ? asset('assets/images/joboo-inverted.png') : asset('assets/images/joboo-logo.png') %}<div {{ attributes }} class="tw-items-center lg:tw-flex">{% set rightNavItemsForMobile = this.rightNavItemsForMobile %}{% if direction == "left" %}<div class="tw-flex tw-flex-shrink-0 tw-items-center tw-pl-1 tw-h-16"><a href="/de/" class="tw-m-0 tw-h-full tw-flex tw-items-center"><img class="tw-h-full tw-w-auto tw-pt-[7.5px] tw-pb-2"src="{{ logoImgSrc|cdnifyUri }}?1765880448"alt="JOBOO GMBH"></a></div>{% endif %}<div class="tw-hidden lg:tw-flex tw-flex-row tw-items-center tw-pl-4">{% if this.sideNavbarItems %}{% for sideNavbarItem in this.sideNavbarItems %}{# @var sideNavbarItem \JanusHercules\Shared\Presentation\Entity\NavigationItem #}{% if sideNavbarItem and sideNavbarItem.url is defined and sideNavbarItem.label is defined and sideNavbarItem.name is not defined %}<twig:NavigationItemurl="{{ sideNavbarItem.url }}"label="{{ sideNavbarItem.label }}"icon="{{ asset(sideNavbarItem.iconLink) }}"type="{{ sideNavbarItem.type }}"/>{% elseif sideNavbarItem and sideNavbarItem.name is defined %}<twig:dropdown><twig:block name="trigger"><twig:button text="{{ sideNavbarItem.name }}" type="button" variant="link" color="white"data-action="click->dropdown#toggle"class="tw-text-black hover:tw-text-black tw-bg-transparent"textAlignment="start"data-testid="dropdown_link"><twig:block name="content_icon"><img src="{{ sideNavbarItem.iconLink ? asset(sideNavbarItem.iconLink) : asset('assets/icons/chevron-down.svg') }}"alt="chevron-down"></twig:block></twig:button></twig:block>{% if sideNavbarItem %}<twig:NavigationListGroup items="{{ sideNavbarItem.subItems }}"showDivider="true"/>{% endif %}</twig:dropdown>{% endif %}{% endfor %}{% endif %}</div>{# Mobile #}{% if direction == 'right' %}<div class="tw-flex lg:tw-hidden tw-items-center tw-justify-center tw-float-right tw-h-full"><twig:dropdown><twig:block name="trigger"><twig:button type="button" text="" variant="link" class="tw-bg-transparent"data-action="click->dropdown#toggle"><twig:block name="content_icon"><span class="tw-text-gray-primary">MenĂ¼</span> <img src="{{ asset('assets/icons/burger-menu.svg') }}" alt="burger-menu"></twig:block></twig:button></twig:block><twig:block name="content">{% if rightNavItemsForMobile %}<twig:NavigationListGroup items="{{ rightNavItemsForMobile }}" showDivider="{{ app.user ? true : false }}"/>{% endif %}</twig:block></twig:dropdown></div>{% endif %}</div>