Files
SkinbaseNova/resources/views/errors/410.blade.php

30 lines
1.1 KiB
PHP

{{--
410 Gone
Use for permanently deleted artworks, DMCA removed content, deleted blog posts.
Minimal content no heavy suggestions needed by spec.
--}}
@extends('errors._layout', [
'error_code' => 410,
'error_title' => 'Content Permanently Removed',
'error_message' => 'This content has been permanently removed and is no longer available.',
])
@section('badge', 'Gone')
@section('primary-cta')
<a href="/discover/trending"
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-compass" aria-hidden="true"></i>
Explore Discover
</a>
@endsection
@section('secondary-ctas')
<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">
Return Home
</a>
<a href="/search" 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">
<i class="fas fa-search mr-1.5" aria-hidden="true"></i> Search
</a>
@endsection