From ece7177e53131821e09f9d816e5c21304a1d10b8 Mon Sep 17 00:00:00 2001 From: lizonthewebauto Date: Tue, 11 Nov 2025 16:10:37 -0500 Subject: [PATCH] Create AppShell.tsx --- src/ui/AppShell.tsx | 72 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 src/ui/AppShell.tsx diff --git a/src/ui/AppShell.tsx b/src/ui/AppShell.tsx new file mode 100644 index 00000000..c5920e92 --- /dev/null +++ b/src/ui/AppShell.tsx @@ -0,0 +1,72 @@ +// src/ui/AppShell.tsx +export default function AppShell() { + // Simple anchor links for now (no react-router-dom needed) + const nav = [ + ['/#/dashboard', 'Dashboard'], + ['/#/ideas', 'Ideas'], + ['/#/library', 'Content Library'], + ['/#/uploads', 'Uploads'], + ['/#/presets', 'Presets'], + ['/#/schedule', 'Schedule & Autolist'], + ['/#/agent', 'AI Agent Training'], + ['/#/brands', 'Brands'], + ['/#/settings', 'Settings'], + ]; + + return ( +
+
+ {/* Sidebar */} + + + {/* Main */} +
+
+

Vibe Studio

+
+ + +
+
+ +
+
+ Connected! This is your Prism shell. + Replace this area with your actual pages or SDK components. + Links on the left are dummy anchors for now. +
+
+
+
+
+ ) +}