chore: css

This commit is contained in:
peaklabs-dev
2025-01-06 18:05:58 +01:00
parent 3c623d6553
commit 0f77e282cb

View File

@@ -1,22 +1,22 @@
@extends('layouts.base')
<div class="flex flex-col items-center justify-center min-h-screen px-4 py-16 sm:px-6 sm:py-24">
<div class="flex flex-col items-center justify-center h-full">
<div class="text-center">
<p class="font-mono font-bold text-red-500 text-8xl sm:text-9xl">500</p>
<h1 class="mt-6 text-2xl font-bold tracking-tight text-gray-900 dark:text-white sm:text-4xl">Wait, this is not cool...</h1>
<p class="font-mono font-semibold text-red-500 text-7xl">500</p>
<h1 class="mt-4 font-bold tracking-tight dark:text-white">Wait, this is not cool...</h1>
<p class="text-base leading-7 text-neutral-300">There has been an error, we are working on it.</p>
@if ($exception->getMessage() !== '')
<div class="max-w-2xl mx-auto mt-8 text-sm text-red-500 whitespace-pre-wrap">
<div class="mt-6 text-xs text-red-500 whitespace-pre-wrap text-right">
Error: {!! $exception->getMessage() !!}
</div>
@endif
<div class="flex items-center justify-center mt-10 gap-x-6">
<a href="/" class="inline-block">
<a href="/">
<x-forms.button>Go back home</x-forms.button>
</a>
<a target="_blank" href="{{ config('constants.urls.contact') }}" class="inline-flex items-center text-sm text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-white">
Contact support
<x-external-link class="ml-1 w-4 h-4" />
<a target="_blank" class="text-xs" href="{{ config('constants.urls.contact') }}">Contact
support
<x-external-link />
</a>
</div>
</div>
</div>
</div>