Deskripsi:
- merge to build
This commit is contained in:
2023-10-02 09:41:33 +08:00
parent 494b65418d
commit 193dc27e9c

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