import Box from '@mui/material/Box';
import Portal from '@mui/material/Portal';
import { AnimateLogo1 } from 'src/components/animate';
// ----------------------------------------------------------------------
export function SplashScreen({ portal = true, sx, ...other }) {
const content = (
);
if (portal) {
return {content};
}
return content;
}