Files
SkinbaseNova/resources/views/errors/contextual/page-not-found.blade.php

32 lines
1.2 KiB
PHP

{{--
Static Page Not Found Contextual 404
Shown at /pages/:slug or /about|/help|/contact when page not in DB.
--}}
@extends('errors._layout', [
'error_code' => 404,
'error_title' => 'Page Not Found',
'error_message' => 'This page was removed or renamed. Try one of the links below.',
])
@section('badge', 'Page Not Found')
@section('primary-cta')
<a href="/help"
class="inline-flex items-center gap-2 rounded-xl bg-sky-500 hover:bg-sky-400 text-white font-semibold px-6 py-3 text-sm shadow-lg shadow-sky-900/30 transition-colors">
<i class="fas fa-question-circle" aria-hidden="true"></i>
Help Center
</a>
@endsection
@section('secondary-ctas')
<a href="/about" class="rounded-xl border border-white/10 hover:border-white/25 text-white/70 hover:text-white px-4 py-2 text-sm transition-colors">
About
</a>
<a href="/contact" class="rounded-xl border border-white/10 hover:border-white/25 text-white/70 hover:text-white px-4 py-2 text-sm transition-colors">
Contact
</a>
<a href="/" class="rounded-xl border border-white/10 hover:border-white/25 text-white/70 hover:text-white px-4 py-2 text-sm transition-colors">
Home
</a>
@endsection