import { getTranslations } from 'next-intl/server' /** Información del reino (Rates + Horarios) — contenido de /-realm. */ export async function RealmInfo() { const t = await getTranslations('UI') return (

{t('realmInfo.ratesTitle')}

{t('realmInfo.experience')}: {t('realmInfo.experienceValue')}

{t('realmInfo.greenBlueDrop')}: {t('realmInfo.greenBlueDropValue')}

{t('realmInfo.goldNpc')}: {t('realmInfo.goldNpcValue')}

{t('realmInfo.goldQuest')}: {t('realmInfo.goldQuestValue')}

{t('realmInfo.skills')}: {t('realmInfo.skillsValue')}

{t('realmInfo.professions')}: {t('realmInfo.professionsValue')}

{t('realmInfo.reputations')}: {t('realmInfo.reputationsValue')}

{t('realmInfo.honor')}: {t('realmInfo.honorValue')}

{t('realmInfo.scheduleTitle')}

{t('realmInfo.scheduleNote')}


{t('realmInfo.dailyQuests')}: {t('realmInfo.dailyQuestsValue')}

{t('realmInfo.dailyDungeons')}: {t('realmInfo.dailyDungeonsValue')}

{t('realmInfo.raidReset')}: {t('realmInfo.raidResetValue')}

{t('realmInfo.battlegrounds')}: {t('realmInfo.battlegroundsValue')}

{t('realmInfo.arenaPoints')}: {t('realmInfo.arenaPointsValue')}


) }