-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
528c0dc
commit e257074
Showing
2 changed files
with
24 additions
and
10 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 |
---|---|---|
@@ -1,13 +1,26 @@ | ||
<template> | ||
<div class="flex flex-col items-center"> | ||
<div class="text-indigo-500 font-bold text-7xl">404</div> | ||
|
||
<div class="font-bold text-3xl xl:text-7xl lg:text-6xl md:text-5xl mt-10"> | ||
This page does not exist | ||
</div> | ||
|
||
<div class="text-gray-400 font-medium text-sm md:text-xl lg:text-2xl mt-8"> | ||
The page you are looking for could not be found. | ||
</div> | ||
<navigation /> | ||
<div class="error"> | ||
<h1>404 - pagina niet gevonden</h1> | ||
</div> | ||
<div class="footer"> | ||
<c-footer /> | ||
</div> | ||
</template> | ||
|
||
<style> | ||
.error { | ||
display: flex; | ||
height: 100%; | ||
margin: auto auto; | ||
align-items: center; | ||
justify-content: center; | ||
text-align: center; | ||
} | ||
.footer { | ||
bottom: 0; | ||
width: 100%; | ||
position: absolute; | ||
} | ||
</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