fedi-feed-router/resources/views/components/page-header.blade.php
myrmidex a7317e376f
Some checks failed
CI / ci (push) Failing after 6m32s
CI / ci (pull_request) Successful in 5m35s
103 - Move notification bell to page header component
2026-03-18 21:27:14 +01:00

16 lines
472 B
PHP

@props(['title', 'subtitle' => null])
<div class="mb-8 flex items-start justify-between">
<div>
<h1 class="text-2xl font-bold text-gray-900">{{ $title }}</h1>
@if ($subtitle)
<p class="mt-1 text-sm text-gray-500">{{ $subtitle }}</p>
@endif
</div>
<div class="flex items-center space-x-3">
{{ $slot }}
<div class="hidden lg:block">
<livewire:notification-bell />
</div>
</div>
</div>