2026-04-29 21:55:46 +03:30
|
|
|
'use client';
|
|
|
|
|
|
2026-06-20 14:51:43 +03:30
|
|
|
import { useTranslations } from 'next-intl';
|
2026-06-20 12:37:38 +03:30
|
|
|
import { Link } from '@/i18n/navigation';
|
2026-04-29 21:55:46 +03:30
|
|
|
|
|
|
|
|
export default function AccountSettingsPage() {
|
2026-06-20 14:51:43 +03:30
|
|
|
const t = useTranslations('settings');
|
|
|
|
|
const tCommon = useTranslations('common');
|
|
|
|
|
|
2026-04-29 21:55:46 +03:30
|
|
|
return (
|
2026-04-30 18:15:40 +03:30
|
|
|
<div className="space-y-6">
|
2026-04-29 21:55:46 +03:30
|
|
|
<div>
|
|
|
|
|
<Link
|
|
|
|
|
href="/today"
|
|
|
|
|
className="text-sm text-primary hover:opacity-90"
|
|
|
|
|
>
|
2026-06-20 14:51:43 +03:30
|
|
|
{tCommon('backToApp')}
|
2026-04-29 21:55:46 +03:30
|
|
|
</Link>
|
2026-06-20 14:51:43 +03:30
|
|
|
<h1 className="text-2xl font-semibold text-text-primary mt-4">{t('accountTitle')}</h1>
|
|
|
|
|
<p className="text-text-secondary text-sm mt-2">{t('accountSubtitle')}</p>
|
2026-04-29 21:55:46 +03:30
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div className="surface-card p-6 space-y-3">
|
2026-06-20 14:51:43 +03:30
|
|
|
<p className="text-sm text-text-secondary">{t('accountPlaceholder')}</p>
|
2026-04-29 21:55:46 +03:30
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|