Files
Website/resources/js/components/errors/Internal.vue
2023-03-01 07:43:52 +10:00

23 lines
580 B
Vue

<template>
<SMPage no-breadcrumbs>
<div class="sm-page-error sm-error-internal">
<div class="image"></div>
<div class="content">
<h1>The cat has broken something</h1>
<p>
We are working to fix that what was broken. Please try again
later.
</p>
</div>
</div>
</SMPage>
</template>
<script setup lang="ts"></script>
<style lang="scss">
.sm-page-error.sm-error-internal .image {
background-image: url("/img/500.jpg");
}
</style>