Javascript – useRouter() is not redirecting to the landing page
"use client" import { useState } from 'react'; import {auth} from '../../firebase-config' import {createUserWithEmailAndPassword} from 'firebase/auth' import { useRouter } from 'next/router'; const SignUp = () => { const [email, setEmail] = useState(''); const [password, setPassword] = useState(''); const handleSubmit…