15 lines
339 B
Vue
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> |