+
+ {/* Left: utility buttons */}
+
+
+ {/* Center: clock */}
+
+
+ {/* Right: spacer to balance layout */}
+
@@ -143,39 +142,6 @@ export default function Dashboard() {
);
}
-/* ── Live indicator ─────────────────────────────────────── */
-
-function LiveIndicator({ connected }: { connected: boolean }) {
- return (
-
-
-
- {connected && (
-
- )}
-
-
- {connected ? "Live" : "Offline"}
-
- {connected ? (
-
- ) : (
-
- )}
-
- );
-}
-
/* ── Loading skeleton ───────────────────────────────────── */
function LoadingSkeleton() {
diff --git a/web/src/styles/globals.css b/web/src/styles/globals.css
index a67f031..b29ee8e 100644
--- a/web/src/styles/globals.css
+++ b/web/src/styles/globals.css
@@ -110,7 +110,7 @@
@apply font-mono text-[10px] font-semibold tracking-widest text-base-500 uppercase;
}
.section-title {
- @apply font-serif italic text-lg text-base-900 tracking-tight;
+ @apply font-sans font-bold text-base uppercase text-base-900 tracking-wide;
}
.section-rule {
@apply flex-1 h-px bg-base-300;
diff --git a/web/tailwind.config.js b/web/tailwind.config.js
index 7db3979..eabf8ad 100644
--- a/web/tailwind.config.js
+++ b/web/tailwind.config.js
@@ -45,7 +45,7 @@ export default {
},
},
fontFamily: {
- serif: ['"Instrument Serif"', "Georgia", "serif"],
+ serif: ['"IBM Plex Sans"', "system-ui", "sans-serif"],
sans: ['"IBM Plex Sans"', "system-ui", "sans-serif"],
mono: ['"IBM Plex Mono"', "Menlo", "monospace"],
},