Deskripsi :
- Perbaikan UI Donasi
## NO Issue
This commit is contained in:
2024-07-22 10:29:51 +08:00
parent 8fa3f0332d
commit 73c6d58eef
89 changed files with 1686 additions and 1442 deletions

View File

@@ -1,23 +1,20 @@
"use client";
import { Warna } from "@/app/lib/warna";
import { Center, Image, Paper, Stack, Text, Title } from "@mantine/core";
import { RouterCrowd } from "@/app/lib/router_hipmi/router_crowd";
import UIGlobal_SplashScreen from "@/app_modules/_global/ui/ui_splash";
import { useShallowEffect } from "@mantine/hooks";
import { IconHeartHandshake } from "@tabler/icons-react";
import { useRouter } from "next/navigation";
export default function SplashCrowd() {
const router = useRouter();
useShallowEffect(() => {
setTimeout(() => router.push("/dev/crowd/main"), 1000);
setTimeout(() => router.push(RouterCrowd.main), 1000);
}, []);
return (
<>
<Center h={"100vh"}>
<Paper p={{ base: 50, md: 60, lg: 80 }}>
<Image alt="" src={"/aset/investasi/logo-crowd.png"} />
</Paper>
</Center>
<UIGlobal_SplashScreen icon={<IconHeartHandshake size={300} />} />
</>
);
}