feat: recreate public frontend with Heritage Editorial identity

Replace placeholder visual system with EB Garamond/olive tokens, brand assets, editorial home narrative, São Paulo settings, real testimonials, and regenerated visual baselines.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-08-01 23:17:35 -03:00
parent 637be0664a
commit 9c43ad1d65
68 changed files with 1917 additions and 344 deletions

View File

@@ -12,8 +12,16 @@
<div class="grid gap-6 md:grid-cols-2">
@foreach ($testimonials as $testimonial)
@php
$paragraphs = preg_split('/\n\s*\n/', trim((string) $testimonial->quote)) ?: [];
$paragraphs = array_values(array_filter(array_map('trim', $paragraphs), fn (string $p): bool => $p !== ''));
@endphp
<blockquote class="space-y-4 border-t border-amare-border pt-4">
<p class="text-lg text-amare-text">{{ $testimonial->quote }}</p>
<div class="space-y-3 text-lg text-amare-text">
@foreach ($paragraphs as $index => $paragraph)
<p>@if ($index === 0)@endif{{ $paragraph }}@if ($index === count($paragraphs) - 1)@endif</p>
@endforeach
</div>
<footer class="text-sm text-amare-text-muted">
<cite class="not-italic font-semibold text-amare-text">{{ $testimonial->author_name }}</cite>
@if (filled($testimonial->context))