import type { NextPage } from 'next' import { serverSideTranslations } from 'next-i18next/serverSideTranslations' import AccountPage from '../components/account/AccountPage' export async function getStaticProps({ locale }: { locale: string }) { return { props: { ...(await serverSideTranslations(locale, [ 'activity', 'common', 'onboarding', 'onboarding-tours', 'profile', 'search', 'settings', 'swap', 'token', 'trade', ])), }, } } const Index: NextPage = () => { return (