65 lines
1.2 KiB
Vue
65 lines
1.2 KiB
Vue
<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>
|