mirror of
https://github.com/cssgunc/compass.git
synced 2025-04-03 19:40:16 -04:00
Reroute from root route to login page
This commit is contained in:
parent
a979d6b051
commit
e13100e0f7
9
compass/app/page.tsx
Normal file
9
compass/app/page.tsx
Normal file
|
@ -0,0 +1,9 @@
|
|||
"use client";
|
||||
|
||||
import { useRouter } from "next/navigation";
|
||||
|
||||
export default function Page() {
|
||||
const router = useRouter();
|
||||
|
||||
router.push("/auth/login");
|
||||
}
|
Loading…
Reference in New Issue
Block a user