Merge pull request #13 from bipproduction/auth/login

fix
This commit is contained in:
Bagasbanuna02
2023-10-02 09:42:07 +08:00
committed by GitHub

View File

@@ -1,6 +1,6 @@
"use client"; "use client";
import { Title } from "@mantine/core"; import { Flex, Title } from "@mantine/core";
import { useShallowEffect } from "@mantine/hooks"; import { useShallowEffect } from "@mantine/hooks";
import { useRouter } from "next/navigation"; import { useRouter } from "next/navigation";
import { useState } from "react"; import { useState } from "react";
@@ -22,7 +22,9 @@ export default function SplashScreen() {
}, []); }, []);
return ( return (
<> <>
<Title>Splash Screen</Title> <Flex justify={"center"} align={"center"} h={"100vh"}>
<Title order={1}>Splash Screen</Title>
</Flex>
</> </>
); );
} }