2026-02-19 18:07:46 +01:00
|
|
|
<div id="mobile-menu"
|
|
|
|
|
x-show="mobileMenuOpen"
|
|
|
|
|
x-transition:enter="transition ease-out duration-300"
|
|
|
|
|
x-transition:enter-start="-translate-x-full"
|
|
|
|
|
x-transition:enter-end="translate-x-0"
|
|
|
|
|
x-transition:leave="transition ease-in duration-300"
|
|
|
|
|
x-transition:leave-start="translate-x-0"
|
|
|
|
|
x-transition:leave-end="-translate-x-full"
|
|
|
|
|
class="fixed inset-0 z-40 bg-[var(--bg-primary)] transform md:hidden"
|
|
|
|
|
x-cloak>
|
2026-02-19 19:06:29 +01:00
|
|
|
<div class="flex justify-between items-center p-5">
|
|
|
|
|
<a href="{{@site.url}}" class="site-logo-container">
|
|
|
|
|
{{#if @site.logo}}
|
|
|
|
|
<img src="{{@site.logo}}" alt="{{@site.title}}" class="h-10 w-auto site-logo">
|
|
|
|
|
{{else}}
|
|
|
|
|
<img src="{{asset "images/palina.png"}}" alt="{{@site.title}}" class="h-10 w-auto site-logo">
|
|
|
|
|
{{/if}}
|
|
|
|
|
</a>
|
2026-02-19 18:07:46 +01:00
|
|
|
<button @click="mobileMenuOpen = false" class="p-2 rounded-full bg-[var(--bg-secondary)] text-[var(--text-primary)] hover:bg-[var(--bg-tertiary)] transition-colors duration-200">
|
2026-02-17 18:54:09 +01:00
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6">
|
|
|
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="M6 18L18 6M6 6l12 12" />
|
|
|
|
|
</svg>
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
2026-02-19 18:07:46 +01:00
|
|
|
<nav class="flex flex-col items-center justify-center h-full space-y-8 text-2xl" @click="mobileMenuOpen = false">
|
2026-02-17 18:54:09 +01:00
|
|
|
{{navigation type="primary"}}
|
|
|
|
|
</nav>
|
|
|
|
|
</div>
|