import Layout from "../components/layout/Layout" import Link from "next/link" export default function Home() { return ( <>
{/* RESET PASSWORD PAGE ============================================= */}
{/* LOGO */}
logo-image logo-image
{/* RESET PASSWORD FORM */}
{/* Title*/}
Forgot your password?

Enter your email address, if an account exists we‘ll send you a link to reset your password.

{/* Form Input */}
{/* Form Submit Button */}
{/* Form Data */}
Never mind, I remembered!
{/* Form Message */}
{/* END RESET PASSWORD FORM */}
{/* End row */}
{/* End container */}
{/* END RESET PASSWORD PAGE */}
) } export async function getStaticProps({ locale }) { const { getMessages } = await import('../utils/getMessages') return { props: { locale, messages: await getMessages(locale), } } }