mirror of
https://github.com/versia-pub/frontend.git
synced 2026-03-13 11:39:16 +01:00
refactor: ♻️ Disable Nuxt component auto-importing (obscures code flow)
This commit is contained in:
parent
32d1acb4c1
commit
e309c56a86
58 changed files with 440 additions and 292 deletions
|
|
@ -7,9 +7,9 @@
|
|||
</h1>
|
||||
<p class="mt-6 text-base leading-7 text-gray-400" v-html="error.message"></p>
|
||||
<div class="mt-10 grid grid-cols-2 gap-x-6 mx-auto max-w-md">
|
||||
<ButtonsPrimary class="w-full" @click="back">Go back</ButtonsPrimary>
|
||||
<ButtonPrimary class="w-full" @click="back">Go back</ButtonPrimary>
|
||||
<a href="https://github.com/lysand-org/lysand-fe/issues" target="_blank">
|
||||
<ButtonsSecondary class="w-full">Report an issue</ButtonsSecondary>
|
||||
<ButtonSecondary class="w-full">Report an issue</ButtonSecondary>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -19,6 +19,9 @@
|
|||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
import ButtonPrimary from "../buttons/button-primary.vue";
|
||||
import ButtonSecondary from "../buttons/button-secondary.vue";
|
||||
|
||||
const error = ref<{
|
||||
title: string;
|
||||
message: string;
|
||||
|
|
|
|||
|
|
@ -1,6 +1,10 @@
|
|||
<script setup lang="ts">
|
||||
import SquarePattern from "../graphics/square-pattern.vue";
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<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">
|
||||
<GraphicsSquarePattern />
|
||||
<SquarePattern />
|
||||
<div class="prose prose-invert max-w-lg">
|
||||
<h1 class="mt-4 text-3xl font-bold tracking-tight text-gray-100 sm:text-5xl">JavaScript is disabled
|
||||
</h1>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue