2020-10-13 18:19:54 +00:00
|
|
|
<?= helper(['components', 'svg']) ?>
|
2020-05-27 18:46:16 +02:00
|
|
|
<!doctype html>
|
|
|
|
<html>
|
2020-06-05 13:54:40 +00:00
|
|
|
|
2020-05-27 18:46:16 +02:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="robots" content="noindex">
|
|
|
|
|
|
|
|
<title>Whoops!</title>
|
2022-01-20 11:26:18 +00:00
|
|
|
<link rel='stylesheet' type='text/css' href='<?= route_to('themes-colors-css') ?>' />
|
2021-07-12 17:47:56 +00:00
|
|
|
<?= service('vite')->asset('styles/index.css', 'css') ?>
|
2020-05-27 18:46:16 +02:00
|
|
|
</head>
|
|
|
|
|
2021-12-07 13:46:08 +00:00
|
|
|
<body class="flex flex-col items-center justify-center min-h-screen px-2 text-center bg-base theme-<?= service('settings')
|
|
|
|
->get('App.theme') ?>">
|
2020-10-13 18:19:54 +00:00
|
|
|
<?= svg('castopod-mascot_confused', 'h-64') ?>
|
2021-04-02 17:20:02 +00:00
|
|
|
<h1 class="text-3xl font-bold font-display md:text-4xl lg:text-5xl">Whoops!</h1>
|
2021-11-05 14:36:34 +00:00
|
|
|
<p class="mb-6 text-lg text-skin-muted md:text-xl lg:text-2xl">We seem to have hit a snag. Please try again later...</p>
|
2020-05-27 18:46:16 +02:00
|
|
|
</body>
|
|
|
|
|
2021-05-06 14:00:48 +00:00
|
|
|
</html>
|