29 lines
586 B
HTML
29 lines
586 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1.0"
|
|
/>
|
|
<title>404 Not Found</title>
|
|
<style>
|
|
body {
|
|
text-align: center;
|
|
padding-top: 100px;
|
|
}
|
|
hr {
|
|
margin-top: 30px;
|
|
margin-bottom: 30px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Error 404</h1>
|
|
<p>This is a stub is meant to be replaced by the compiled front-end in production</p>
|
|
<hr />
|
|
<p>Site: Guardian</p>
|
|
<p>Version: 0.0.1</p>
|
|
</body>
|
|
</html>
|