mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-22 03:02:20 +00:00
* WIP notifications and other refactors - refactor notification channels - send notifications on events related to the servers and sites - delete server log files on server deletion - add telegram notification channel - add new icons - cache configs and icons on installation and updates - new navbar for dark mode and settings * discord channel * build assets * pint
18 lines
547 B
PHP
18 lines
547 B
PHP
<nav x-data="{ open: false }" class="h-16 border-b border-gray-200 dark:border-gray-800 bg-white dark:bg-gray-900">
|
|
<div class="mx-auto max-w-full px-4 sm:px-6 lg:px-8">
|
|
<div class="flex items-center justify-between h-16">
|
|
<div class="flex">
|
|
|
|
</div>
|
|
|
|
<div class="flex items-center">
|
|
<div class="mr-3">
|
|
@include('layouts.partials.color-scheme')
|
|
</div>
|
|
|
|
<livewire:user-dropdown />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</nav>
|