diff --git a/src/components/page/Section.tsx b/src/components/page/Section.tsx index 38ad79f0..238ea970 100644 --- a/src/components/page/Section.tsx +++ b/src/components/page/Section.tsx @@ -1,10 +1,21 @@ -import { Container, type ContainerProps } from "@mui/material" +import { + Box, + Container, + type BoxProps, + type ContainerProps, +} from "@mui/material" import type { FC } from "react" -export interface SectionProps extends ContainerProps {} +export interface SectionProps extends ContainerProps { + boxProps?: Omit +} -const Section: FC = containerProps => { - return +const Section: FC = ({ boxProps, ...containerProps }) => { + return ( + + + + ) } export default Section