'use client'; import { Box } from '@/ui/Box'; import { ReactNode } from 'react'; interface MainContentProps { children: ReactNode; hasSidebar: boolean; } export function MainContent({ children, hasSidebar }: MainContentProps) { return ( {/* Background Grid */} {/* Content */} {children} ); }