import { Box } from '@mui/material' import type { ReactNode } from 'react' interface PageContainerProps { children: ReactNode maxWidth?: string | number className?: string } export function PageContainer({ children, maxWidth = 1440, className = '' }: PageContainerProps) { return ( {children} ) }