404 page, portfolio and stuffs
This commit is contained in:
parent
a0114e3367
commit
30d598e426
4 changed files with 60 additions and 2 deletions
10
index.js
10
index.js
|
@ -295,3 +295,13 @@ function mastoUpdate() {
|
|||
}
|
||||
|
||||
// mastoUpdate()
|
||||
|
||||
app.use((req, res, next) => {
|
||||
res.status(404).send(
|
||||
`<link rel="stylesheet" href="./style.css">
|
||||
<h1>...what?</h1>
|
||||
<p>Uh oh... I think your lost? There's nothing here :P
|
||||
<br>Maybe you were sent the wrong link? Try going to 'fs.violets-purgatory.dev' instead if you were expecting a file...</p>`
|
||||
)
|
||||
})
|
||||
|
|
@ -36,9 +36,11 @@
|
|||
</div>
|
||||
<div>
|
||||
<hr>
|
||||
<p class="chip"><a href="./hosted">Stuff i'm hosting!</a></p>
|
||||
<p class="chip"><a href="./hosted">Services</a></p>
|
||||
<p class="chip"><a href="./socials">Socials</a></p>
|
||||
<p class="chip"><a href="./pronouns">Pronouns</a></p>
|
||||
<p class="chip"><a href="./portfolio">Portfolio</a></p>
|
||||
<p class="chip"><a href="./art">Art</a></p>
|
||||
{LANYARD_QUOTE}
|
||||
</div>
|
||||
</div>
|
||||
|
|
23
static/art/index.html
Normal file
23
static/art/index.html
Normal file
|
@ -0,0 +1,23 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<link rel="stylesheet" href="../style.css">
|
||||
|
||||
<meta content="Art - Violet's Purgatory" property="og:title" />
|
||||
<meta content="Here lies all my previous art projects, finished or not." />
|
||||
<meta content="https://api.lanyard.rest/534132311781015564.png" property="og:image" />
|
||||
<meta content="#a200ff" data-react-helmet="true" name="theme-color" />
|
||||
|
||||
<title>Hosting - Violet's Purgatory</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>Nothing here...</h1>
|
||||
<p style="color: gray">Yet...</p>
|
||||
</body>
|
||||
|
||||
</html>
|
23
static/portfolio/index.html
Normal file
23
static/portfolio/index.html
Normal file
|
@ -0,0 +1,23 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<link rel="stylesheet" href="../style.css">
|
||||
|
||||
<meta content="Violet's Portfolio" property="og:title" />
|
||||
<meta content="A page to show all my accomplishments & creations that im proud of! Or... mostly..." />
|
||||
<meta content="https://api.lanyard.rest/534132311781015564.png" property="og:image" />
|
||||
<meta content="#a200ff" data-react-helmet="true" name="theme-color" />
|
||||
|
||||
<title>Hosting - Violet's Purgatory</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>Nothing here...</h1>
|
||||
<p style="color: gray">Yet...</p>
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
Reference in a new issue