mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-03 06:56:15 +00:00
2.x
This commit is contained in:
29
resources/views/vendor/filament-panels/components/header/simple.blade.php
vendored
Normal file
29
resources/views/vendor/filament-panels/components/header/simple.blade.php
vendored
Normal file
@ -0,0 +1,29 @@
|
||||
@props([
|
||||
'heading' => null,
|
||||
'logo' => true,
|
||||
'subheading' => null,
|
||||
])
|
||||
|
||||
<header class="fi-simple-header flex items-center justify-between h-8">
|
||||
<div class="flex items-center gap-1">
|
||||
@if ($logo)
|
||||
<x-filament-panels::logo />
|
||||
@endif
|
||||
|
||||
@if (filled($heading))
|
||||
<h1
|
||||
class="fi-simple-header-heading text-center text-2xl font-bold tracking-tight text-gray-950 dark:text-white"
|
||||
>
|
||||
{{ $heading }}
|
||||
</h1>
|
||||
@endif
|
||||
</div>
|
||||
|
||||
@if (filled($subheading))
|
||||
<p
|
||||
class="fi-simple-header-subheading text-center text-sm text-gray-500 dark:text-gray-400"
|
||||
>
|
||||
{{ $subheading }}
|
||||
</p>
|
||||
@endif
|
||||
</header>
|
Reference in New Issue
Block a user