26 lines
721 B
PHP
26 lines
721 B
PHP
@component('layouts.base')
|
||
<div class="max-w-[1400px] mx-auto mt-[100px] mb-[100px]">
|
||
<div class="flex items-baseline mb-8">
|
||
<div>
|
||
@isset($subtitle)
|
||
<p class='text-gray-400'>
|
||
{{$subtitle}}
|
||
</p>
|
||
@endisset
|
||
@isset($title)
|
||
<x-page-heading>
|
||
{{ $title }}
|
||
</x-page-heading>
|
||
@endisset
|
||
</div>
|
||
{{ isset($panel)? $panel: '' }}
|
||
</div>
|
||
<main class="px-4 py-2">
|
||
{{ $slot }}
|
||
</main>
|
||
</div>
|
||
<footer class="grid place-items-center w-full text-gray-400 py-16">
|
||
Создано для ВСК
|
||
</footer>
|
||
@endcomponent
|