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