inicios del FrontEnd
This commit is contained in:
40
APP/pages/GeneralViews/NotFoundPage.vue
Executable file
40
APP/pages/GeneralViews/NotFoundPage.vue
Executable file
@@ -0,0 +1,40 @@
|
||||
<template>
|
||||
<auth-layout class="not-found-page">
|
||||
<div class="centered">
|
||||
<h1><i class="not-found-icon nc-icon nc-puzzle-10"></i>404</h1>
|
||||
<p>The page you requested could not be found.</p>
|
||||
</div>
|
||||
</auth-layout>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
layout: 'auth'
|
||||
};
|
||||
</script>
|
||||
<style lang="scss">
|
||||
.not-found-page {
|
||||
.full-page > .content,
|
||||
.centered {
|
||||
min-height: calc(100vh - 160px);
|
||||
}
|
||||
.not-found-icon {
|
||||
margin-right: 10px;
|
||||
}
|
||||
.centered {
|
||||
h1,
|
||||
i {
|
||||
font-size: 50px;
|
||||
}
|
||||
p {
|
||||
font-size: 20px;
|
||||
}
|
||||
display: flex;
|
||||
padding-bottom: 150px;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: white;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user