Files
hipmi/src/app/page.tsx
2024-12-02 17:32:21 +08:00

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 />;
}