Wire admin studio SSR and search infrastructure
This commit is contained in:
27
resources/views/errors/429.blade.php
Normal file
27
resources/views/errors/429.blade.php
Normal file
@@ -0,0 +1,27 @@
|
||||
{{--
|
||||
429 — Too Many Requests / rate limited
|
||||
--}}
|
||||
@extends('errors._layout', [
|
||||
'error_code' => 429,
|
||||
'error_title' => 'You Are Moving Too Fast',
|
||||
'error_message' => 'Skinbase has rate-limited this action for a moment. Please wait a bit and try again.',
|
||||
])
|
||||
|
||||
@section('badge', 'Rate Limited')
|
||||
|
||||
@section('primary-cta')
|
||||
<button onclick="window.location.reload()"
|
||||
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 cursor-pointer">
|
||||
<i class="fas fa-clock" aria-hidden="true"></i>
|
||||
Try Again Shortly
|
||||
</button>
|
||||
@endsection
|
||||
|
||||
@section('secondary-ctas')
|
||||
<a href="/discover/trending" 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">
|
||||
Browse Discover
|
||||
</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
|
||||
29
resources/views/errors/http.blade.php
Normal file
29
resources/views/errors/http.blade.php
Normal file
@@ -0,0 +1,29 @@
|
||||
{{--
|
||||
Generic HTTP error fallback.
|
||||
Used when Laravel throws an HttpException with a status code that does not
|
||||
have its own dedicated errors/<status>.blade.php template yet.
|
||||
--}}
|
||||
@extends('errors._layout', [
|
||||
'error_code' => $error_code ?? 500,
|
||||
'error_title' => $error_title ?? 'Unexpected Error',
|
||||
'error_message' => $error_message ?? 'Something went wrong while loading this page.',
|
||||
])
|
||||
|
||||
@section('badge', 'Request Error')
|
||||
|
||||
@section('primary-cta')
|
||||
<button onclick="window.location.reload()"
|
||||
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 cursor-pointer">
|
||||
<i class="fas fa-redo" aria-hidden="true"></i>
|
||||
Try Again
|
||||
</button>
|
||||
@endsection
|
||||
|
||||
@section('secondary-ctas')
|
||||
<a href="/discover/trending" 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">
|
||||
Browse Discover
|
||||
</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
|
||||
Reference in New Issue
Block a user