#591 - profile, users and projects

This commit is contained in:
Saeed Vaziry
2025-05-18 18:25:27 +02:00
parent edd4ba1bc2
commit 8b4d156afa
67 changed files with 1467 additions and 760 deletions

View File

@ -1,20 +1,18 @@
import { Head } from '@inertiajs/react';
import DeleteUser from '@/pages/profile/components/delete-user';
import SettingsLayout from '@/layouts/settings/layout';
import Container from '@/components/container';
import UpdatePassword from '@/pages/profile/components/update-password';
import UpdateUser from '@/pages/profile/components/update-user';
import Heading from '@/components/heading';
export default function Profile({ mustVerifyEmail, status }: { mustVerifyEmail: boolean; status?: string }) {
export default function Profile() {
return (
<SettingsLayout>
<Head title="Profile settings" />
<Container className="max-w-xl">
<Container className="max-w-5xl">
<Heading title="Profile settings" description="Manage your profile settings." />
<UpdateUser mustVerifyEmail={mustVerifyEmail} status={status} />
<UpdateUser />
<UpdatePassword />
<DeleteUser />
</Container>
</SettingsLayout>
);