2024-06-21 04:09:09 +02:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
import SquarePattern from "../graphics/square-pattern.vue";
|
|
|
|
|
</script>
|
|
|
|
|
|
2024-06-15 23:18:58 +02:00
|
|
|
<template>
|
2024-07-22 01:23:29 +02:00
|
|
|
<div class="grid min-h-screen place-items-center px-6 py-24 sm:py-32 lg:px-8 fixed inset-0 z-[1000000] bg-dark-900">
|
2024-06-21 04:09:09 +02:00
|
|
|
<SquarePattern />
|
2024-06-15 23:18:58 +02:00
|
|
|
<div class="prose prose-invert max-w-lg">
|
2024-07-22 01:23:29 +02:00
|
|
|
<h1 class="mt-4 text-3xl font-bold tracking-tight text-gray-100 sm:text-5xl">JavaScript is disabled
|
2024-06-15 23:18:58 +02:00
|
|
|
</h1>
|
2024-07-22 01:23:29 +02:00
|
|
|
<p class="mt-6 text-base leading-7 text-gray-400">
|
2024-06-15 23:18:58 +02:00
|
|
|
This website requires JavaScript to function properly. Please enable JavaScript in your browser
|
|
|
|
|
settings.
|
|
|
|
|
</p>
|
2024-07-22 01:23:29 +02:00
|
|
|
<p class="mt-6 text-base leading-7 text-gray-400">
|
2024-06-15 23:18:58 +02:00
|
|
|
If you are using a browser that does not support JavaScript, please consider using a modern browser
|
|
|
|
|
like <a href="https://www.mozilla.org/firefox/new/" class="underline">Firefox</a> or <a
|
|
|
|
|
href="https://www.google.com/chrome/" class="underline">Chrome</a>.
|
|
|
|
|
</p>
|
2024-07-22 01:23:29 +02:00
|
|
|
<p class="mt-6 text-base leading-7 text-gray-400">
|
2024-06-15 23:18:58 +02:00
|
|
|
This application does not track you, collect user data, use cookies of any kind or send requests to
|
|
|
|
|
servers outside of your account's instance.
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|