mirror of
https://github.com/dnote/dnote
synced 2026-03-15 15:05:51 +01:00
* Allow to add and edit notes * Implement search * Implement settings * Implement checkout page * Implement paywall * Fix inconsistent margin * Render mobile menu * Allow to logout * emails * Implement user migration * Always build standalone * Embed digest in email * Move browser extension * Fix test * Use system font * Add favicon and app icons * Make tabbar smaller * Initialize focus on editor * Fix various UI audit issues * Simplify asset serving * Register sw * Upgrade deps
41 lines
661 B
HTML
41 lines
661 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<title>Page Not Found | Dnote</title>
|
|
<style type="text/css">
|
|
body {
|
|
margin: 0;
|
|
}
|
|
|
|
main {
|
|
text-align: center;
|
|
padding: 8em 0.5em;
|
|
}
|
|
|
|
.logo {
|
|
width: 207px;
|
|
}
|
|
|
|
.contact-list {
|
|
list-style: none;
|
|
padding-left: 0;
|
|
}
|
|
|
|
.contact-list li {
|
|
display: inline-block;
|
|
padding: 0 0.7em;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<h1>You are offline</h1>
|
|
<p>
|
|
Please check you connection and try again.
|
|
</p>
|
|
</main>
|
|
</body>
|
|
</html>
|