12 lines
345 B
TypeScript
12 lines
345 B
TypeScript
import { Metadata } from 'next';
|
|
import PasswordResetSentView from '@/features/auth/components/password-reset-sent-view';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Password Reset Email Sent',
|
|
description: 'Password reset email has been sent to your inbox.'
|
|
};
|
|
|
|
export default async function Page() {
|
|
return <PasswordResetSentView />;
|
|
}
|