mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 19:27:52 +01:00
23 lines
566 B
HTML
23 lines
566 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Page not found</title>
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<link rel="stylesheet" href="style.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<!-- This file lives in public/404.html -->
|
|
<div class="card">
|
|
<h1>Page not found</h1>
|
|
<img src="error-404.png" width="64" height="64" class="error-image" />
|
|
<p class="error-description">
|
|
The page you're looking for doesn't exist.
|
|
</p>
|
|
<p class="error-description">
|
|
<a href="/">Go back to home page</a>
|
|
</p>
|
|
</div>
|
|
</body>
|
|
</html>
|