import { getTranslations, setRequestLocale } from 'next-intl/server' import { getSession } from '@/lib/session' import { getVoteSites } from '@/lib/vote' import { VotePanel } from '@/components/VotePanel' export const dynamic = 'force-dynamic' export default async function VotePointsPage({ params }: { params: Promise<{ locale: string }> }) { const { locale } = await params setRequestLocale(locale) const t = await getTranslations('Vote') const session = await getSession() const sites = await getVoteSites() return (

{t('title')}

{t('info', { server: 'Nova WoW' })}

) }