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