mirror of https://github.com/usememos/memos.git
23 lines
884 B
HTML
23 lines
884 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Memos - Frontend Not Built</title>
|
|
<style>
|
|
body { font-family: system-ui, sans-serif; display: flex; justify-content: center; align-items: center; min-height: 100vh; margin: 0; background: #f5f5f5; }
|
|
.container { text-align: center; padding: 2rem; background: white; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); max-width: 500px; }
|
|
h1 { color: #333; margin-bottom: 1rem; }
|
|
p { color: #666; line-height: 1.6; }
|
|
code { background: #e8e8e8; padding: 0.2rem 0.5rem; border-radius: 4px; font-size: 0.9rem; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>🚧 Frontend Not Built</h1>
|
|
<p>The frontend assets have not been built yet. Please run:</p>
|
|
<p><code>cd web && pnpm install && pnpm release</code></p>
|
|
<p>Then restart the server.</p>
|
|
</div>
|
|
</body>
|
|
</html>
|