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, [ 'account', 'activity', 'common', 'notifications', 'onboarding', 'onboarding-tours', 'profile', 'search', 'settings', 'swap', 'stats', 'token', 'trade', 'close-account', ])), }, } } const Index: NextPage = () => { return (
) } export default Index