import { TypeEnum } from "@/app/utils/typeEnum";
import RoughSchedule from "@/components/RoughSchedule";
import { getServerI18n, I18nProvider } from "@/i18n";
import Add from "@mui/icons-material/Add";
import Button from "@mui/material/Button";
import Stack from "@mui/material/Stack";
import Typography from "@mui/material/Typography";
import { Metadata } from "next";
import Link from "next/link";
import { Suspense } from "react";
import RoughScheduleDetailView from "@/components/RoughScheduleDetail/RoughScheudleDetailView";
export const metadata: Metadata = {
title: "Demand Forecast Detail",
};
const roughSchedulingDetail: React.FC = async () => {
// const project = TypeEnum.PRODUCT
const { t } = await getServerI18n("project");
// preloadClaims();
return (
<>
{t("Demand Forecast Detail")}
{/* }
LinkComponent={Link}
href="product/create"
>
{t("Create product")}
*/}
}>
>
);
};
export default roughSchedulingDetail;