From 7f4afa3ec89ccbad92f5f2be96c900818331a766 Mon Sep 17 00:00:00 2001 From: Julien Herr Date: Sat, 23 May 2026 21:43:24 +0200 Subject: [PATCH] feat(admin): add status page link to dashboard header Add a "Status" link in the admin header pointing to the public status page (/), mirroring the existing "Go to admin" link on that page. Add a gap to .header-actions so the new link and Logout button are spaced apart. Co-Authored-By: Claude Opus 4.7 --- src/routes/admin.tsx | 3 +++ src/styles/layout.css | 1 + 2 files changed, 4 insertions(+) diff --git a/src/routes/admin.tsx b/src/routes/admin.tsx index 8565e64..f5c172f 100644 --- a/src/routes/admin.tsx +++ b/src/routes/admin.tsx @@ -377,6 +377,9 @@ app.get("/", async (c) => {

Manage your email newsletter feeds

+ + Status + Logout diff --git a/src/styles/layout.css b/src/styles/layout.css index bf63790..ea35e3e 100644 --- a/src/styles/layout.css +++ b/src/styles/layout.css @@ -173,6 +173,7 @@ .header-actions { display: flex; align-items: center; + gap: var(--spacing-sm); margin-top: var(--spacing-md); }