'use client'; import { SettingsSidebar, PasswordSecurityForm } from '@/components/settings'; export default function UserPasswordSecurityPage() { const handleSave = (data: { currentPassword: string; newPassword: string }) => { console.log('Updating user password:', data); }; return (
{/* Left Sidebar */} {/* Main Content */}
{/* Header Card */}

Password Security

); }