Reroute from root route to login page

This commit is contained in:
pmoharana-cmd 2024-04-23 21:27:18 -04:00
parent a979d6b051
commit e13100e0f7

9
compass/app/page.tsx Normal file
View File

@ -0,0 +1,9 @@
"use client";
import { useRouter } from "next/navigation";
export default function Page() {
const router = useRouter();
router.push("/auth/login");
}