🆙 Add fixed cms 🆙

This commit is contained in:
Remco
2026-02-02 19:30:21 +01:00
parent b1a2cab62d
commit b67e0ec2b9
3982 changed files with 193682 additions and 0 deletions
@@ -0,0 +1,21 @@
@props(['icon' => '', 'classes' => ''])
<div class="w-full flex flex-col gap-y-4 rounded overflow-hidden bg-white pb-3 dark:bg-gray-800 shadow-sm {{ $classes }}">
<div class="flex gap-x-2 border-b bg-gray-50 p-3 dark:border-gray-700 dark:bg-gray-900">
@if (empty($icon) === false)
<div class="max-w-[50px] max-h-[50px] min-w-[50px] min-h-[50px] rounded-full relative flex items-center justify-center {{ $icon }}"></div>
@endif
<div class="flex flex-col justify-center text-sm">
<p class="font-semibold text-black dark:text-gray-300">{{ $title }}</p>
@if(isset($underTitle))
<p class="dark:text-gray-500">{{ $underTitle }}</p>
@endif
</div>
</div>
<section class="h-full flex flex-col px-3">
{{ $slot }}
</section>
</div>
@@ -0,0 +1,19 @@
@props(['icon', 'classes' => ''])
<div class="w-full flex flex-col gap-y-4 p-3 rounded-lg overflow-hidden {{ $classes }}">
<div class="flex gap-x-2">
<div
class="max-w-[50px] max-h-[50px] min-w-[50px] min-h-[50px] rounded-full {{ $icon }} relative flex items-center justify-center">
</div>
<div class="flex flex-col">
<p class="font-semibold text-black dark:text-gray-200">{{ $title }}</p>
@if(isset($underTitle))
<p class="dark:text-gray-500">{{ $underTitle }}</p>
@endif
</div>
</div>
{{ $slot }}
</div>
@@ -0,0 +1,22 @@
@props(['iconUrl' => '', 'color' => '', 'classes' => ''])
<div class="w-full flex flex-col gap-y-4 rounded overflow-hidden bg-white pb-3 dark:bg-gray-800 shadow-sm {{ $classes }}">
<div class="flex gap-x-2 border-b bg-gray-50 p-3 dark:border-gray-700 dark:bg-gray-900">
@if (!empty($iconUrl))
<div style="background-image: url({{ $iconUrl }}); background-color: {{ $color }}; background-repeat: no-repeat; background-position: center;" class="max-w-[50px] max-h-[50px] min-w-[50px] min-h-[50px] rounded-full relative flex items-center justify-center"></div>
@endif
<div class="flex flex-col justify-center text-sm">
<p class="font-semibold text-black dark:text-gray-300">{{ $title }}</p>
@if(isset($underTitle))
<p class="dark:text-gray-500">{{ $underTitle }}</p>
@endif
</div>
</div>
<section class="h-full flex flex-col px-3">
{{ $slot }}
</section>
</div>
@@ -0,0 +1,22 @@
@props(['badge' => '', 'color' => '#327fa8'])
<div class="flex w-full flex-col gap-y-4 overflow-hidden rounded bg-white pb-3 shadow-sm dark:bg-gray-800">
<div class="flex gap-x-2 border-b bg-gray-50 p-3 dark:border-gray-700 dark:bg-gray-900">
<div class="max-w-12.5 max-h-12.5 min-w-12.5 min-h-12.5 rounded-full relative flex items-center justify-center"
style="background-color: {{ $color }}">
<img src="{{ asset(sprintf('%s/%s.gif', setting('badges_path'), $badge)) }}" alt="">
</div>
<div class="flex flex-col justify-center text-sm">
<p class="font-semibold text-black dark:text-gray-300">{{ $title }}</p>
@if(isset($underTitle))
<p class="dark:text-gray-500">{{ $underTitle }}</p>
@endif
</div>
</div>
<section class="px-3">
{{ $slot }}
</section>
</div>