2026-04-29 21:55:46 +03:30
|
|
|
'use client';
|
|
|
|
|
|
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() {
|
|
|
|
|
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"
|
|
|
|
|
>
|
|
|
|
|
← Back to app
|
|
|
|
|
</Link>
|
|
|
|
|
<h1 className="text-2xl font-semibold text-text-primary mt-4">Account</h1>
|
|
|
|
|
<p className="text-text-secondary text-sm mt-2">
|
|
|
|
|
Profile and security settings for your login.
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div className="surface-card p-6 space-y-3">
|
|
|
|
|
<p className="text-sm text-text-secondary">
|
|
|
|
|
Password change and profile editing will be wired here next (e.g. invite
|
|
|
|
|
flow, reset password).
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|