-
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.
- Loading branch information
Showing
5 changed files
with
50 additions
and
13 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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 |
---|---|---|
@@ -1,13 +1,48 @@ | ||
<script setup lang="ts"></script> | ||
<script setup lang="ts"> | ||
import UiButton from "@/components/ui/uiButton.vue"; | ||
import { ArrowLeftIcon } from '@untitledui-icons/vue/solid' | ||
</script> | ||
|
||
<template> | ||
<main> | ||
<div class="main__body"> | ||
<div class="main__container"> | ||
<h1>Page not found :(</h1> | ||
<img class="s404" src="/404.png" alt=""> | ||
<h1 class="title">Whooops, this page is gone</h1> | ||
<p class="subtitle">This page is missing or you wrote the link incorrectly.</p> | ||
</div> | ||
<ui-button @click="$router.push('/')"><ArrowLeftIcon class="arrow-icon"/>Back to home</ui-button> | ||
</div> | ||
</main> | ||
</template> | ||
|
||
<style scoped></style> | ||
<style lang="scss" scoped> | ||
.s404 { | ||
filter: drop-shadow(0 0 100px #FF0016); | ||
width: 100%; | ||
margin-bottom: 20px; | ||
} | ||
.title { | ||
margin: 0; | ||
font-weight: bold; | ||
font-size: 34px; | ||
} | ||
.subtitle { | ||
margin: 0; | ||
font-weight: 300; | ||
font-size: 15px; | ||
color: #9F9F9F; | ||
position: relative; | ||
top: -20px; | ||
} | ||
svg { | ||
width: 15px; | ||
} | ||
button { | ||
margin-top: 15%; | ||
} | ||
</style> |