mirror of
https://github.com/PhyreApps/PhyrePanel.git
synced 2024-11-21 23:20:24 +00:00
update
This commit is contained in:
parent
a40dc79b2e
commit
fecbf7255e
2 changed files with 7 additions and 7 deletions
|
@ -181,13 +181,13 @@ class Settings extends Page
|
|||
'icon'=>'heroicon-o-paint-brush',
|
||||
'links'=> [
|
||||
[
|
||||
'title'=>'Phyre Theme',
|
||||
'icon'=>'heroicon-o-color-swatch',
|
||||
'title'=>'Phyre Logo',
|
||||
'icon'=>'heroicon-o-photograph',
|
||||
'url'=> route('filament.admin.pages.phyre-apperance')
|
||||
],
|
||||
[
|
||||
'title'=>'Phyre Logo',
|
||||
'icon'=>'heroicon-o-photograph',
|
||||
'title'=>'Phyre Theme',
|
||||
'icon'=>'heroicon-o-color-swatch',
|
||||
'url'=> route('filament.admin.pages.phyre-apperance')
|
||||
],
|
||||
]
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
<x-filament-panels::page>
|
||||
|
||||
<div class="grid grid-cols-3 gap-4 gap-y-8 bg-white/5 p-8 shadow rounded-xl">
|
||||
<div class="grid grid-cols-3 gap-4 gap-y-8 p-8 rounded-xl bg-white shadow-sm ring-1 ring-gray-950/5 dark:divide-white/10 dark:bg-gray-900 dark:ring-white/10">
|
||||
@foreach($linkGroups as $group)
|
||||
|
||||
<div>
|
||||
<div class="flex gap-2 items-center">
|
||||
<x-filament::icon-button size="xl" icon="{{$group['icon']}}" />
|
||||
<div class="text-primary-500 text-xl">
|
||||
<div class="text-primary-500 text-lg">
|
||||
{{ $group['title'] }}
|
||||
</div>
|
||||
</div>
|
||||
|
@ -14,7 +14,7 @@
|
|||
<ul class="flex flex-col gap-y-1">
|
||||
@foreach($group['links'] as $link)
|
||||
<li>
|
||||
<a class="cursor-pointer font-medium hover:text-primary-500 transition" href="{{$link['url']}}">
|
||||
<a class="cursor-pointer text-sm font-medium hover:text-primary-500 transition" href="{{$link['url']}}">
|
||||
{{$link['title']}}
|
||||
</a>
|
||||
</li>
|
||||
|
|
Loading…
Reference in a new issue