mirror of
https://github.com/JonasunderscoreJones/jonasjones.dev.git
synced 2025-10-23 00:49:19 +02:00
added 405 page easteregg
This commit is contained in:
parent
bbd6106c01
commit
d366ff85bb
2 changed files with 35 additions and 0 deletions
19
src/routes/404/+page.svelte
Normal file
19
src/routes/404/+page.svelte
Normal file
|
@ -0,0 +1,19 @@
|
|||
<script>
|
||||
import NavBar from "../../components/NavBar.svelte";
|
||||
import Footer from "../../components/Footer.svelte";
|
||||
import ParallaxBg from "../../components/ParallaxBg.svelte";
|
||||
import Padding from "../../components/padding.svelte";
|
||||
</script>
|
||||
|
||||
<ParallaxBg>
|
||||
<NavBar />
|
||||
<title>404</title>
|
||||
<div class="container">
|
||||
<Padding />
|
||||
<h1>405</h1>
|
||||
<p>This is not the 404 page.</p>
|
||||
<p>This is the 405 page.</p>
|
||||
<p>how dare you visit this page -_-</p>
|
||||
</div>
|
||||
<Footer />
|
||||
</ParallaxBg>
|
16
src/routes/405/+page.svelte
Normal file
16
src/routes/405/+page.svelte
Normal file
|
@ -0,0 +1,16 @@
|
|||
<script>
|
||||
import NavBar from "../../components/NavBar.svelte";
|
||||
import Footer from "../../components/Footer.svelte";
|
||||
import ParallaxBg from "../../components/ParallaxBg.svelte";
|
||||
import Padding from "../../components/padding.svelte";
|
||||
</script>
|
||||
|
||||
<ParallaxBg>
|
||||
<NavBar />
|
||||
<title>404</title>
|
||||
<div class="container">
|
||||
<Padding />
|
||||
<h1>gotcha.</h1>
|
||||
</div>
|
||||
<Footer />
|
||||
</ParallaxBg>
|
Loading…
Add table
Add a link
Reference in a new issue