- Introduced a new admin section with user management capabilities, including a dedicated AdminUsersPage. - Updated localization files to support new admin titles in English and Chinese. - Added routing for the admin users page and integrated it into the sidebar configuration. - Created necessary layout and loading components for the admin section. - Implemented a data structure for user management, enhancing the overall admin functionality.
12 lines
354 B
TypeScript
12 lines
354 B
TypeScript
import { DeleteAccountCard } from '@/components/settings/security/delete-account-card';
|
|
import { PasswordCardWrapper } from '@/components/settings/security/password-card-wrapper';
|
|
|
|
export default function SecurityPage() {
|
|
return (
|
|
<div className="grid gap-8 grid-cols-1">
|
|
<PasswordCardWrapper />
|
|
<DeleteAccountCard />
|
|
</div>
|
|
);
|
|
}
|