add landing pages for meetups

This commit is contained in:
Benjamin Takats
2023-01-14 20:35:54 +01:00
parent 8120b13bff
commit 2f00e34e10
55 changed files with 3161 additions and 17 deletions

View File

@@ -0,0 +1,15 @@
@aware(['component'])
@php
$theme = $component->getTheme();
@endphp
@if ($theme === 'tailwind')
<div class="flex-col">
{{ $slot }}
</div>
@elseif ($theme === 'bootstrap-4' || $theme === 'bootstrap-5')
<div class="d-flex flex-column">
{{ $slot }}
</div>
@endif