19 lines
605 B
TypeScript
19 lines
605 B
TypeScript
import { useTranslations } from 'next-intl';
|
|
import AccountPage from './AccountPage';
|
|
import { PageType } from '@/types/base';
|
|
import { LocaleCodeType } from '@/types/locale';
|
|
|
|
export default function Page({ params }: PageType) {
|
|
const t = useTranslations('Auth');
|
|
const messages = {
|
|
yourProjects: t('your_projects'),
|
|
public: t('public'),
|
|
private: t('private'),
|
|
notOwnAnyProjects: t('not_own_any_projects'),
|
|
findProjects: t('find_projects'),
|
|
profileSettings: t('profile_settings'),
|
|
};
|
|
|
|
return <AccountPage messages={messages} locale={params.locale as LocaleCodeType} />;
|
|
}
|