14 lines
356 B
PHP
14 lines
356 B
PHP
<div class="max-w-4xl mx-auto py-12 text-center">
|
|
@if(isset($title))
|
|
<h1 class="text-3xl font-extrabold text-white">{{ $title }}</h1>
|
|
@endif
|
|
|
|
@if(isset($subtitle))
|
|
<p class="mt-3 text-sm text-neutral-300">{{ $subtitle }}</p>
|
|
@endif
|
|
|
|
@if($slot->isNotEmpty())
|
|
<div class="mt-6">{{ $slot }}</div>
|
|
@endif
|
|
</div>
|