* feat: ship public site with SEO and visuals Publish CMS content on public routes with responsive media, accessibility checks, and deterministic visual baselines. Co-authored-by: Cursor <cursoragent@cursor.com> * fix: make browser visual CI deterministic for media Mount host public storage into FrankenPHP so seeded fixtures are served, and replace PNG-as-JPG fixtures with real JPEGs so Chromium can render them. Co-authored-by: Cursor <cursoragent@cursor.com> * fix: serve public media on same-origin storage paths Pest Browser hosts on 127.0.0.1:port while Storage::url used http://localhost, so screenshots captured broken images. Use relative /storage URLs for media and absolutize only OG tags via url(). Co-authored-by: Cursor <cursoragent@cursor.com> * test: refresh visual baselines from CI Ubuntu screenshots Media now loads on same-origin /storage paths, so baselines must capture the rendered fixtures. Use full-page snapshots from the CI runner to keep Pest's exact snapshot match stable across environments. Co-authored-by: Cursor <cursoragent@cursor.com> --------- Co-authored-by: Cursor <cursoragent@cursor.com>
38 lines
1.8 KiB
PHP
38 lines
1.8 KiB
PHP
@props([
|
|
'cases',
|
|
])
|
|
|
|
@if ($cases->isNotEmpty())
|
|
<section aria-labelledby="cases-heading" class="border-b border-amare-border py-16">
|
|
<div class="container-amare space-y-8">
|
|
<div class="max-w-2xl space-y-3">
|
|
<h2 id="cases-heading" class="text-3xl font-semibold text-amare-text">Casos selecionados</h2>
|
|
<p class="text-amare-text-muted">Histórias recentes de celebrações conduzidas pela Amare.</p>
|
|
</div>
|
|
|
|
<div class="grid gap-8">
|
|
@foreach ($cases as $case)
|
|
<article class="grid gap-4 border-t border-amare-border pt-6 md:grid-cols-[200px_minmax(0,1fr)]">
|
|
@if (filled($case->cover_image_path))
|
|
<x-media.image
|
|
:path="$case->cover_image_path"
|
|
:alt="$case->cover_image_alt ?: $case->title"
|
|
sizes="200px"
|
|
class="aspect-square w-full object-cover"
|
|
/>
|
|
@endif
|
|
<div class="space-y-2">
|
|
<h3 class="text-2xl font-semibold text-amare-text">{{ $case->title }}</h3>
|
|
<p class="text-sm text-amare-text-muted">{{ $case->event_type }}@if($case->city) · {{ $case->city }}@endif</p>
|
|
<p class="text-amare-text-muted">{{ $case->summary }}</p>
|
|
<a href="{{ url('/portfolio/'.$case->slug) }}" class="inline-flex text-sm font-semibold text-amare-accent hover:text-amare-accent-hover">
|
|
Ver caso
|
|
</a>
|
|
</div>
|
|
</article>
|
|
@endforeach
|
|
</div>
|
|
</div>
|
|
</section>
|
|
@endif
|