import { Box, type SxProps, type Theme } from '@mui/material' import type { ReactNode } from 'react' import { styles } from './style' export interface ContentProps { sx?: SxProps children: ReactNode } export function Content({ sx, children }: ContentProps) { return ( {children} ) } export interface FooterProps { sx?: SxProps children: ReactNode } export function Footer({ sx, children }: FooterProps) { return ( {children} ) }