diff --git a/frontend/src/components/layout/Sidebar.tsx b/frontend/src/components/layout/Sidebar.tsx
index a12dbed..ef86c84 100644
--- a/frontend/src/components/layout/Sidebar.tsx
+++ b/frontend/src/components/layout/Sidebar.tsx
@@ -47,11 +47,14 @@ export default function Sidebar() {
>
{/* Logo */}
-
+
+
{/* Upload Brief */}
diff --git a/frontend/src/components/layout/TopBar.tsx b/frontend/src/components/layout/TopBar.tsx
index 31f755e..81029d8 100644
--- a/frontend/src/components/layout/TopBar.tsx
+++ b/frontend/src/components/layout/TopBar.tsx
@@ -20,6 +20,7 @@ export default function TopBar() {
}
}
+ const isDashboard = location.pathname === '/'
const breadcrumb = location.pathname.startsWith('/sheet/') ? 'Sheet Editor'
: location.pathname.startsWith('/brief/review/') ? 'Review Brief'
: location.pathname === '/brief/upload' ? 'Upload Brief'
@@ -31,8 +32,19 @@ export default function TopBar() {
className="flex items-center justify-between px-4 py-3 border-b flex-shrink-0"
style={{ background: 'var(--bg-sidebar)', borderColor: 'var(--border)' }}
>
-
- {breadcrumb}
+
+ {!isDashboard && (
+
+ )}
+
+ {breadcrumb}
+
diff --git a/frontend/src/index.css b/frontend/src/index.css
index f4c2819..f4ea508 100644
--- a/frontend/src/index.css
+++ b/frontend/src/index.css
@@ -8,10 +8,10 @@
--accent: #FFC407;
--accent-hover: #e6b000;
--text-primary: #ffffff;
- --text-secondary: #888888;
- --text-muted: #555555;
- --border: #222222;
- --border-light: #333333;
+ --text-secondary: #b0b0b0;
+ --text-muted: #787878;
+ --border: #2a2a2a;
+ --border-light: #3a3a3a;
--success: #22c55e;
--danger: #ef4444;
--warning: #f59e0b;