import React from "react"; import Box from "@mui/material/Box"; import Typography from "@mui/material/Typography"; const PageTitle = ({title = "", image = null}) => { return ( {/* Overlay */} {/* Title */} {title?.toUpperCase() || " "} ); }; export default PageTitle;