add icons to all the bars

This commit is contained in:
Inhji 2023-04-07 22:01:57 +02:00
parent 9e1a315b99
commit d482d2b7b0
2 changed files with 5 additions and 5 deletions

View file

@ -107,7 +107,7 @@ defmodule ChiyaWeb.AdminComponents do
href={~p"/admin"}
class="text-xs leading-6 text-gray-900 dark:text-gray-100 font-semibold dark:hover:text-gray-300 hover:text-gray-700"
>
Admin
<.icon name="hero-star-mini" class="w-4 h-4" /> Admin
</.link>
</li>
<li>

View file

@ -5,25 +5,25 @@
href={~p"/admin/notes"}
class="text-xs font-semibold leading-6 text-gray-900 hover:text-gray-700 dark:text-gray-200"
>
Notes
<.icon name="hero-document-text" class="w-4 h-4" /> Notes
</.link>
<.link
href={~p"/admin/channels"}
class="text-xs font-semibold leading-6 text-gray-900 hover:text-gray-700 dark:text-gray-200"
>
Channels
<.icon name="hero-speaker-wave" class="w-4 h-4" /> Channels
</.link>
<.link
href={~p"/admin/identities"}
class="text-xs font-semibold leading-6 text-gray-900 hover:text-gray-700 dark:text-gray-200"
>
Identities
<.icon name="hero-user" class="w-4 h-4" /> Identities
</.link>
<.link
href={~p"/admin/settings"}
class="text-xs font-semibold leading-6 text-gray-900 hover:text-gray-700 dark:text-gray-200"
>
Settings
<.icon name="hero-wrench-screwdriver" class="w-4 h-4" /> Settings
</.link>
</div>
</div>