diff --git a/pages/login.tsx b/pages/login.tsx index 9166139..c505a89 100644 --- a/pages/login.tsx +++ b/pages/login.tsx @@ -9,6 +9,7 @@ import { useState } from 'react'; import { useProducts } from '../hooks/useProducts'; import ImageCapture from '../components/ImageCapture'; import { scanProduct } from '../utils/visionUtils'; +import PasswordReset from '../components/PasswordReset'; const Login: NextPage = () => { const { user, redirectAfterAuth } = useAuth(); @@ -37,9 +38,10 @@ const Login: NextPage = () => { Sign in to manage your pantry, reduce waste, and never run out of essentials. + ); }; -export default Login; \ No newline at end of file +export default Login;