import { getTranslations } from 'next-intl/server' import TradesTable from '@/components/trades/TradesTable' import { getTrades } from '@/lib/api' export const revalidate = 10 export default async function TradesPage() { const t = await getTranslations('trades') const trades = await getTrades(100, 1).catch(() => []) return (

{t('title')}

) }