2023-06-10 17:15:28 -04:00
|
|
|
<template>
|
|
|
|
|
<div class="not-found-container">
|
|
|
|
|
<div>
|
2023-08-31 16:56:58 -04:00
|
|
|
<v-card-title style="color: white; padding-bottom: 36px; font-size: 42px">
|
2023-06-10 17:15:28 -04:00
|
|
|
The page you are looking for isn't here
|
|
|
|
|
</v-card-title>
|
2023-08-31 16:56:58 -04:00
|
|
|
<v-card-subtitle style="color: white; font-size: 18px">
|
2023-06-10 17:15:28 -04:00
|
|
|
Please use the sidebar to find what you are looking for
|
|
|
|
|
</v-card-subtitle>
|
|
|
|
|
</div>
|
2023-08-31 16:56:58 -04:00
|
|
|
<img src="@/assets/images/notfound.webp" alt="missing-page" style="margin-top: 64px" />
|
2023-06-10 17:15:28 -04:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
.not-found-container {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
</style>
|