QC Investasi

# fix
Tampilan admin investasi
Tampilan admin donasi
## No issuee
This commit is contained in:
2024-05-31 16:41:34 +08:00
parent c28cceb46f
commit 5b8cd3a4b6
175 changed files with 4785 additions and 2296 deletions

View File

@@ -16,7 +16,12 @@ export default function LayoutMainCrowd({
return (
<>
<AppComponentGlobal_LayoutTamplate
header={<ComponentGlobal_HeaderTamplate route="/dev/home" title="HIPMI Crowd Funding" />}
header={
<ComponentGlobal_HeaderTamplate
route="/dev/home"
title="HIPMI Crowd Funding"
/>
}
>
{children}
</AppComponentGlobal_LayoutTamplate>

View File

@@ -1,7 +1,7 @@
"use client";
import { Warna } from "@/app/lib/warna";
import { Center, Image, Stack, Text, Title } from "@mantine/core";
import { Center, Image, Paper, Stack, Text, Title } from "@mantine/core";
import { useShallowEffect } from "@mantine/hooks";
import { useRouter } from "next/navigation";
@@ -9,15 +9,14 @@ export default function SplashCrowd() {
const router = useRouter();
useShallowEffect(() => {
setTimeout(() => router.push("/dev/crowd/main"), 2000);
setTimeout(() => router.push("/dev/crowd/main"), 1000);
}, []);
return (
<>
<Center h={"100vh"}>
<Stack align="center" justify="center">
<Title c={"#002e59"}>Welcome to</Title>
<Paper p={{ base: 50, md: 60, lg: 80 }}>
<Image alt="" src={"/aset/investasi/logo-crowd.png"} />
</Stack>
</Paper>
</Center>
</>
);