-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ATL-10: Add catch-all 404 route/page
- Loading branch information
Cesar Villalobos
committed
Mar 14, 2023
1 parent
ae15fcb
commit 6fa43bf
Showing
5 changed files
with
49 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,7 @@ | |
<script lang="ts" setup> | ||
// | ||
</script> | ||
|
||
<style> | ||
@import '@/styles/hartsfield-global.scss' | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.frosted { | ||
background-color: #6d8cb4c3!important; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<template> | ||
<v-container class="fill-height"> | ||
<v-responsive class="d-flex align-center text-center fill-height "> | ||
<v-sheet | ||
border | ||
rounded | ||
:height="300" | ||
:width="800" | ||
class="frosted px-8 py-6 accent-border accent-text mx-auto " | ||
> | ||
<p class="mt-3 text-h1">404</p> | ||
|
||
<p class="mt-8 text-h5 font-weight-light" > | ||
Page not found | ||
</p> | ||
|
||
<div class="mt-8"> | ||
<router-link to="/" class="font-weight-light">Go back to the home page</router-link> | ||
</div> | ||
</v-sheet> | ||
</v-responsive> | ||
</v-container> | ||
</template> | ||
|
||
<script lang="ts"> | ||
export default { | ||
name: 'NotFound' | ||
} | ||
</script> |