feat(ui): remove ContextStrip from layout

All ContextStrip features (tenant selector, theme toggle, connection
status, user menu, logout) are now in the sidebar. The top bar is
removed — content area gets the full vertical space.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Jason Staack
2026-03-21 12:21:16 -05:00
parent 0448982942
commit d08215d524

View File

@@ -1,6 +1,5 @@
import { type ReactNode } from 'react'
import { Sidebar } from './Sidebar'
import { ContextStrip } from './ContextStrip'
import { ShortcutsDialog } from './ShortcutsDialog'
import { CommandPalette } from '@/components/command-palette/CommandPalette'
import { Toaster } from '@/components/ui/toast'
@@ -20,7 +19,6 @@ export function AppLayout({ children }: AppLayoutProps) {
</a>
<Sidebar />
<div className="flex flex-col flex-1 min-w-0 overflow-hidden">
<ContextStrip />
<main id="main-content" tabIndex={-1} className="flex-1 overflow-auto p-5">
{children}
</main>