"use client" import { useSession } from "next-auth/react" import { Separator } from "@/components/ui/separator" import { ProfileForm } from "./profile-form" import { ProfileImage } from "./profile-image" import { PasswordForm } from "./password-form" interface SettingsFormProps { user: { name?: string | null email?: string | null image?: string | null } } export function SettingsForm({ user }: SettingsFormProps) { const { update } = useSession() return (

Account Settings

Manage your account information and security settings

) }