63 lines
2.0 KiB
PHP
63 lines
2.0 KiB
PHP
|
|
<div class="bg-base-100 border-base-300 border-b sticky top-0 z-10">
|
|
<div class="flex justify-between items-center px-7 py-3 mx-auto">
|
|
<div class="flex-1 flex items-center">
|
|
|
|
<label for="main-drawer" class="lg:hidden mr-3">
|
|
<x-icon name="o-bars-3" class="cursor-pointer" />
|
|
</label>
|
|
|
|
<div class="hidden md:block" style="height:3.1em">
|
|
<x-application-logo />
|
|
</div>
|
|
|
|
</div>
|
|
<div class="flex flex-grow gap-4 w-50">
|
|
|
|
<x-spotlight
|
|
shortcut="slash"
|
|
search-text="{{ __('Search holdings, portfolios, or anything else...') }}"
|
|
no-results-text="{{ __('Darn! Nothing found for that search.') }}"
|
|
/>
|
|
|
|
<x-button
|
|
icon="o-magnifying-glass"
|
|
@click="$dispatch('mary-search-open')"
|
|
class="btn-sm"
|
|
>
|
|
<x-slot:label>
|
|
@lang('Press :key to search', ['key' => '<kbd class="kbd kbd-sm">/</kbd>'])
|
|
|
|
</x-slot:label>
|
|
</x-button>
|
|
|
|
</div>
|
|
<div class="flex items-center gap-4">
|
|
|
|
<x-button
|
|
title="{{ __('Documentation') }}"
|
|
icon="o-book-open"
|
|
class="btn-circle btn-ghost btn-sm"
|
|
link="https://github.com/hackeresq/investbrain"
|
|
external
|
|
>
|
|
</x-button>
|
|
|
|
<x-button
|
|
title="{{ __('We\'re open source!') }}"
|
|
class="btn-circle btn-ghost btn-sm"
|
|
link="https://github.com/hackeresq/investbrain"
|
|
external
|
|
>
|
|
<x-github-icon />
|
|
</x-button>
|
|
|
|
<x-theme-toggle
|
|
title="{{ __('Toggle Theme') }}"
|
|
class="btn-circle btn-ghost btn-sm"
|
|
darkTheme="business"
|
|
lightTheme="corporate"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div> |