🆙 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,20 @@
@props(['photos'])
<div class="grid grid-cols-1 gap-2 md:grid-cols-2 lg:grid-cols-4">
@foreach ($photos as $photo)
<a href="{{ $photo->url }}" data-fancybox="gallery" class="cursor-pointer">
<div class="rounded border-2 dark:border-gray-600 h-[280px] relative object-fill overflow-hidden">
<img class="h-full w-full object-cover object-center" src="{{ $photo->url }}" alt="">
<div class="absolute bottom-3 left-4 flex items-center gap-x-3 rounded-full bg-white pr-3 dark:bg-gray-800">
<div class="flex h-10 w-10 items-center justify-center overflow-hidden rounded-full bg-gray-100 dark:bg-gray-900">
<img src="{{ setting('avatar_imager') }}{{ $photo->user->look ?? '' }}&direction=2&headonly=1&head_direction=2&gesture=sml" alt="">
</div>
<p class="dark:text-white">
{{ $photo->user->username ?? __('Unknown') }}
</p>
</div>
</div>
</a>
@endforeach
</div>