import { Metadata } from "next"; import { getServerI18n, I18nProvider } from "@/i18n"; import PageTitleBar from "@/components/PageTitleBar"; import BomWeightingTabs from "@/components/BomWeightingTabs"; import { fetchBomWeightingScores } from "@/app/api/settings/bomWeighting"; export const metadata: Metadata = { title: "BOM Weighting Score", }; const BomWeightingScorePage: React.FC = async () => { const { t } = await getServerI18n("common"); const bomWeightingScores = await fetchBomWeightingScores(); return ( <> ); }; export default BomWeightingScorePage;