'use client'; import React from 'react'; import { motion } from 'framer-motion'; import Image from 'next/image'; type Mode = 'light' | 'dark'; interface Props { mode?: Mode; } function PasswordChangedForm({ mode }: Props) { return (
EmailSentIcon Password Changed! Your password has been changed successfully. Back To Login
); } export default PasswordChangedForm;