{{-- 404 — Generic Not Found Returned when a route has no match. Includes: trending artworks (6), top tags (10), discover CTA. --}} @extends('errors._layout', [ 'error_code' => 404, 'error_title' => '404 — Lost in the Nova', 'error_message' => 'This page drifted into deep space. Let\'s get you back on track.', ]) @section('badge', 'Page Not Found') @section('primary-cta') Explore Discover @endsection @section('secondary-ctas') Browse Wallpapers Search Home @endsection @section('recovery') {{-- Trending artworks --}} @if(isset($trendingArtworks) && $trendingArtworks->count())

Trending Right Now

@foreach($trendingArtworks->take(6) as $artwork) @include('errors._artwork-card', ['artwork' => $artwork]) @endforeach
@endif {{-- Top tags --}} @if(isset($trendingTags) && $trendingTags->count())

Popular Tags

@foreach($trendingTags->take(10) as $tag) #{{ $tag->name }} @endforeach
@endif {{-- Explore categories --}}

Explore Categories

Wallpapers Skins Photography Other
@endsection