Files
HeimerdingerLoL/resources/views/errors/419.blade.php
Rico van Zelst 4cd8485a55 feat: Add custom error pages
fixes #189 https://github.com/rico-vz/HeimerdingerLoL/issues/189
- Created custom error pages with specific messages and designs for HTTP status codes.
- Each page includes a title, description, appropriate message content, and a link to return to the homepage.
2024-04-14 14:02:20 +02:00

17 lines
656 B
PHP

@extends('layouts.app')
@section('title', 'Heimerdinger • 419 Expired')
@section('description', 'Explore League of Legends champions, skins, and game assets on Heimerdinger.')
@section('content')
<div class="flex items-center justify-center h-screen">
<div class="text-center">
<h1 class="font-bold text-orange-400 text-8xl">419</h1>
<h2 class="text-3xl font-bold text-white">Expired</h2>
<p class="mb-8 text-stone-300">The page you are looking for has expired.</p>
<a href="/" class="px-4 py-2 mt-4 text-white bg-orange-400 rounded-md hover:bg-orange-500">Go back to the homepage</a>
</div>
</div>
@endsection