import { Box, Container, Typography } from '@mui/material';
export default function Section({
id,
children,
background = 'default',
maxWidth = 'lg',
sx = {},
}) {
const bgColors = {
default: 'background.default',
alt: 'background.alt',
dark: 'secondary.main',
};
return (
{children}
);
}
export function SectionHeader({ eyebrow, title, subtitle, light = false }) {
return (
{eyebrow && (
{eyebrow}
)}
{title}
{subtitle && (
{subtitle}
)}
);
}