Skip to content

Commit

Permalink
Add dne page
Browse files Browse the repository at this point in the history
  • Loading branch information
Wrench56 committed Jul 8, 2024
1 parent 4a07a02 commit ea4ad38
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/frontend/src/routes/dne/+layout.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export const prerender = true;
export const ssr = true;
18 changes: 18 additions & 0 deletions src/frontend/src/routes/dne/+page.svelte
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<h1>Resource does not exist</h1>
<p>The resource you tried to access does not exist!</p>

<style>
h1 {
color: whitesmoke;
font-family: monaco, Consolas, "Lucida Console", monospace;
}
p {
color: whitesmoke;
font-family: monaco, Consolas, "Lucida Console", monospace;
}
:root {
background-color: black;
}
</style>

0 comments on commit ea4ad38

Please sign in to comment.