dnote/web/assets/static/404.html
Sung Won Cho 2758923c34
Implement personal knowedge base version (#254)
* 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
2019-09-30 11:02:09 +08:00

41 lines
679 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>That page does not exist.</h1>
<p>
<a href="https://www.getdnote.com">Go to Dnote</a>
</p>
</main>
</body>
</html>