import React from 'react'; import Image from 'next/image' type Mode = 'light' | 'dark'; interface ModeProps { mode?: Mode; } function ForgotPassword({ mode }: ModeProps) { return (
EmailSentIcon

Forgot Password?

Don't worry, it happens to the best of us.
Type your email to reset your password.

); } export default ForgotPassword;