You've already forked AstralRinth
forked from didirus/AstralRinth
Migrate to Turborepo (#1251)
This commit is contained in:
64
apps/frontend/src/error.vue
Normal file
64
apps/frontend/src/error.vue
Normal file
@@ -0,0 +1,64 @@
|
||||
<template>
|
||||
<NuxtLayout>
|
||||
<div class="main">
|
||||
<div class="error">
|
||||
<Logo404 v-if="error.statusCode === 404" />
|
||||
<h1 v-else>An error occurred!</h1>
|
||||
<p>{{ error.message }}</p>
|
||||
<div class="button-group">
|
||||
<nuxt-link to="/" class="iconified-button raised-button brand-button">
|
||||
Go home
|
||||
</nuxt-link>
|
||||
<a
|
||||
href="https://discord.modrinth.com"
|
||||
class="iconified-button raised-button"
|
||||
rel="noopener"
|
||||
>
|
||||
Get help on Discord
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</NuxtLayout>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import Logo404 from '~/assets/images/404.svg'
|
||||
|
||||
defineProps({
|
||||
error: {
|
||||
type: Object,
|
||||
default() {
|
||||
return {
|
||||
statusCode: 1000,
|
||||
message: 'Unknown error',
|
||||
}
|
||||
},
|
||||
},
|
||||
})
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.main {
|
||||
margin: var(--spacing-card-lg) auto;
|
||||
width: calc(100% - 4rem);
|
||||
|
||||
@media screen and (min-width: 800px) {
|
||||
width: 600px;
|
||||
}
|
||||
}
|
||||
|
||||
.error {
|
||||
h1 {
|
||||
margin-bottom: 0.25rem;
|
||||
}
|
||||
|
||||
svg {
|
||||
fill: var(--color-text);
|
||||
color: var(--color-text);
|
||||
|
||||
width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user