27 lines
1.0 KiB
PHP
27 lines
1.0 KiB
PHP
{{--
|
|
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 |