* 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> * docs: archive recreate-public-frontend and sync Heritage Editorial specs Merge delta requirements into main OpenSpec capabilities and move the completed change into the dated archive. Co-authored-by: Cursor <cursoragent@cursor.com> --------- Co-authored-by: Cursor <cursoragent@cursor.com>
15 lines
730 B
PHP
15 lines
730 B
PHP
@extends('layouts.public')
|
|
|
|
@section('content')
|
|
<div class="container-amare max-w-2xl space-y-6 py-20 text-center">
|
|
<p class="text-xs font-semibold uppercase tracking-[0.14em] text-amare-accent">Erro 404</p>
|
|
<h1 class="text-4xl font-medium tracking-tight text-amare-text">Página não encontrada</h1>
|
|
<p class="text-amare-muted">O endereço que você tentou abrir não existe ou foi movido.</p>
|
|
<p>
|
|
<a href="{{ route('home') }}" class="inline-flex bg-amare-accent px-5 py-3 text-sm font-semibold uppercase tracking-[0.12em] text-amare-accent-text transition-colors hover:bg-amare-accent-deep">
|
|
Voltar para a home
|
|
</a>
|
|
</p>
|
|
</div>
|
|
@endsection
|