import { getTranslations } from "next-intl/server"; export default async function RecruitSection() { const t = await getTranslations("recruit"); const positions = [t("pos1"), t("pos2"), t("pos3"), t("pos4")]; return (
{t("label")} {t("tag")}

{t("title")}

{t("positionsLabel")}
{positions.map((pos, i) => (
{pos}
))}
); }