//src\app\(main)\analytics\LateStartReport\page.tsx import { Metadata } from "next"; import { I18nProvider } from "@/i18n"; import Typography from "@mui/material/Typography"; import LateStartReportComponent from "@/components/LateStartReport"; export const metadata: Metadata = { title: "Project Status by Client", }; const ProjectLateReport: React.FC = () => { return ( Project Completion Report with Outstanding Un-billed Hours {/* }> */} ); }; export default ProjectLateReport;