-
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.
Merge pull request #4 from cesarvh/ATL-10
ATL-10: Add catch-all 404 route/page
- Loading branch information
Showing
5 changed files
with
51 additions
and
8 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: rgba(109, 140, 180, 0.765) !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> |