'use client'; import { Box } from '@/ui/Box'; import { ReactNode } from 'react'; interface AppShellBarProps { position: 'top' | 'bottom'; children: ReactNode; sidebarOffset?: boolean; } export function AppShellBar({ position, children, sidebarOffset = true }: AppShellBarProps) { const isTop = position === 'top'; return ( {children} ); }