Files
Website/resources/js/components/errors/NotFound.vue
2023-02-27 14:52:01 +10:00

20 lines
445 B
Vue

<template>
<SMPage no-breadcrumbs>
<div class="page-error not-found">
<div class="image"></div>
<div class="content">
<h1>Opps</h1>
<p>The page you asked for was not found</p>
</div>
</div>
</SMPage>
</template>
<script setup lang="ts"></script>
<style lang="scss">
.page-error.not-found .image {
background-image: url("/img/404.jpg");
}
</style>