feat(ui): add action links to home page for navigation

This commit is contained in:
2026-03-26 22:49:32 +02:00
parent f4ef0e9163
commit eefa78d011

View File

@@ -199,6 +199,9 @@ func routes(logger *slog.Logger, cfg *config.Config, db *store.DB, provider ai.P
.content { padding: 28px; }
h1 { margin: 0 0 12px 0; font-size: 2rem; }
p { margin: 0; line-height: 1.5; color: #334155; }
.actions { margin-top: 18px; }
.link { display: inline-block; padding: 10px 14px; border-radius: 8px; background: #172033; color: #fff; text-decoration: none; font-weight: 600; }
.link:hover { background: #0f172a; }
img { display: block; width: 100%; height: auto; }
</style>
</head>
@@ -208,6 +211,11 @@ func routes(logger *slog.Logger, cfg *config.Config, db *store.DB, provider ai.P
<div class="content">
<h1>Avelon Memory Crystal Server (AMCS)</h1>
<p>AMCS is a memory server that captures, links, and retrieves structured project thoughts for AI assistants using semantic search, summaries, and MCP tools.</p>
<div class="actions">
<a class="link" href="/llm">LLM Instructions</a>
<a class="link" href="/oauth-authorization-server">OAuth Authorization Server</a>
<a class="link" href="/healthz">Health Check</a>
</div>
</div>
</main>
</body>