"use client"; import { FC, PropsWithChildren } from "react"; import { Box } from "@mui/material"; import { useLeafcutterContext } from "./LeafcutterProvider"; type AboutBoxProps = PropsWithChildren<{ backgroundColor: string; }>; export const AboutBox: FC = ({ backgroundColor, children, }: any) => { const { colors: { white }, } = useLeafcutterContext(); return ( {children} ); };