import type { Metadata } from 'next' import { getTranslations, setRequestLocale } from 'next-intl/server' import { redirect } from '@/i18n/navigation' import { getSession } from '@/lib/session' import { getGameCharacters } from '@/lib/characters' import { getLevelUpPrice } from '@/lib/prices' import { PageShell } from '@/components/PageShell' import { ServiceBox } from '@/components/ServiceBox' import { PaidServiceForm } from '@/components/PaidServiceForm' export const dynamic = 'force-dynamic' export const metadata: Metadata = { title: 'Subir a nivel 80' } export default async function LevelUpCharacterPage({ params }: { params: Promise<{ locale: string }> }) { const { locale } = await params setRequestLocale(locale) const session = await getSession() if (!session.bnetId) redirect({ href: '/login', locale }) if (!session.username) redirect({ href: '/select-account', locale }) const [chars, price] = await Promise.all([getGameCharacters(session.accountId!), getLevelUpPrice()]) const t = await getTranslations('CharServiceB.levelUp') return (

{t.rich('intro', { s: (c) => {c} })}

{t('onlyLevel')}


{t('instructions')}

{t('levelInfo')}


{t('noteLegend')}

{t('noteOffline')}

{t('noteConfirm')}



{t.rich('requires', { price, s: (c) => {c}, y: (c) => {c} })}

({ name: c.name, classCss: c.classCss }))} checkoutEndpoint="/api/character/level-up/checkout" payLabel={t('payLabel')} buttonClass="level-up-button" provider="sumup" confirmText={t('confirm', { price })} />
) }