Files
Website/resources/js/components/errors/NotFound.vue
2023-01-24 23:40:32 +10:00

15 lines
339 B
Vue

<template>
<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>
</template>
<style lang="scss">
.page-error.not-found .image {
background-image: url('/img/404.jpg');
}
</style>