'use client' import { useState } from 'react' import { Button } from '@/components/ui/button' import { Input } from '@/components/ui/input' import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from '@/components/ui/card' import { updateProfile, changePassword } from '@/app/actions/profile' import { toast } from 'sonner' export function ProfileForm({ user }: { user: any }) { return (