29 lines
1.3 KiB
PHP
29 lines
1.3 KiB
PHP
@php
|
|
try {
|
|
$errorSettings = \App\Models\SiteSetting::instance();
|
|
$pageMeta = \App\Application\Data\PageMeta::forErrorPage($errorSettings, 500);
|
|
} catch (\Throwable $e) {
|
|
$pageMeta = new \App\Application\Data\PageMeta(
|
|
title: 'Algo deu errado - Amare Assessoria',
|
|
description: 'Não foi possível concluir o pedido. Tente novamente em instantes.',
|
|
canonical: '',
|
|
robots: 'noindex, nofollow',
|
|
);
|
|
}
|
|
@endphp
|
|
|
|
@extends('layouts.public')
|
|
|
|
@section('content')
|
|
<div class="container-amare max-w-2xl space-y-6 py-20 text-center" data-motion="page-open" data-reveal-group>
|
|
<p class="text-xs font-semibold uppercase tracking-[0.14em] text-amare-accent" data-motion-beat="seal">Erro 500</p>
|
|
<h1 class="text-4xl font-medium tracking-tight text-amare-text" data-motion-beat="title">Algo deu errado</h1>
|
|
<p class="text-amare-muted" data-reveal data-reveal-from="up">Não foi possível concluir o pedido agora. Tente novamente em instantes.</p>
|
|
<p data-reveal data-reveal-from="up">
|
|
<a href="{{ route('home') }}" class="btn btn-primary text-sm font-semibold uppercase tracking-[0.12em]">
|
|
Voltar para a home
|
|
</a>
|
|
</p>
|
|
</div>
|
|
@endsection
|