15 lines
299 B
TypeScript
15 lines
299 B
TypeScript
"use client";
|
|
|
|
import { SplashScreen } from "@/app_modules/auth";
|
|
import { useShallowEffect } from "@mantine/hooks";
|
|
|
|
export default function Page() {
|
|
useShallowEffect(() => {
|
|
setTimeout(() => {
|
|
window.location.replace("/dev/home");
|
|
}, 1000);
|
|
}, []);
|
|
|
|
return <SplashScreen />;
|
|
}
|