From bb5b62af86f6881831022d352c958794520cc1aa Mon Sep 17 00:00:00 2001 From: lorentz Date: Sun, 3 May 2026 16:08:00 -0400 Subject: [PATCH] feat(02-01): add /mobile/analyzer placeholder so Analyzer tab does not 404 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Minimal server component with coming soon card - No data fetching — Phase 6 (ANL-01..06) owns the real implementation - Sparkles icon consistent with BottomNav tab icon - Resolves NAV-02: Analyzer tab in bottom nav has a valid route --- app/mobile/analyzer/page.tsx | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 app/mobile/analyzer/page.tsx diff --git a/app/mobile/analyzer/page.tsx b/app/mobile/analyzer/page.tsx new file mode 100644 index 0000000..2777b9b --- /dev/null +++ b/app/mobile/analyzer/page.tsx @@ -0,0 +1,33 @@ +/* Placeholder for /mobile/analyzer. + * + * Phase 02 only adds the Analyzer tab to the bottom nav — the real feed + * lands in Phase 6 (`docs/superpowers/specs/2026-05-03-mobile-shell-design.md` + * §6.4). This file exists so tapping the Analyzer tab resolves to a real + * route instead of 404. Phase 6 will replace this file with the actual + * read-only feed page. + * + * DO NOT add features, data fetching, or UI beyond the "Coming soon" + * card here — Phase 6 owns the real implementation. */ + +import { Sparkles } from 'lucide-react'; + +export const metadata = { + title: 'Analyzer · Pulse', +}; + +export default function MobileAnalyzerPlaceholder() { + return ( +
+
+
+ +
+

Analyzer feed coming soon

+

+ The mobile Analyzer feed is on its way. Until then, view full + analyses on the desktop Analyzer. +

+
+
+ ); +}