import ProductionProcessPage from "../../../components/ProductionProcess/ProductionProcessPage"; import { I18nProvider, getServerI18n } 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 { fetchPrinterCombo } from "@/app/api/settings/printer"; export const metadata: Metadata = { title: "Claims", }; const production: React.FC = async () => { const { t } = await getServerI18n("common"); const printerCombo = await fetchPrinterCombo(); return ( <> {t("Production Process")} {/* Optional: Remove or modify create button, because creation is done via API automatically */} {/* */} {/* Use new component */} ); }; export default production;