import { TypeEnum } from "@/app/utils/typeEnum"; import ItemsSearch from "@/components/ItemsSearch"; import { 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"; export const metadata: Metadata = { title: "Product", }; const productSetting: React.FC = async () => { const project = TypeEnum.PRODUCT; const { t } = await getServerI18n(project); // preloadClaims(); return ( <> {t("Product")} {/* */} }> ); }; export default productSetting;