- Ganti Appshell ke tamplate buatan sendiri pada Investasi
## No Issuee
This commit is contained in:
2024-04-20 06:41:51 +08:00
parent e062632de7
commit f3e9b5efae
68 changed files with 485 additions and 129 deletions

View File

@@ -1,5 +1,6 @@
"use client";
import AppComponentGlobal_LayoutTamplate from "@/app_modules/component_global/component_layout_tamplate";
import ComponentGlobal_HeaderTamplate from "@/app_modules/component_global/header_tamplate";
import { ActionIcon, AppShell, Group, Header, Text } from "@mantine/core";
import { IconArrowLeft } from "@tabler/icons-react";
@@ -14,11 +15,11 @@ export default function LayoutMainCrowd({
const router = useRouter();
return (
<>
<AppShell
<AppComponentGlobal_LayoutTamplate
header={<ComponentGlobal_HeaderTamplate route="/dev/home" title="HIPMI Crowd Funding" />}
>
{children}
</AppShell>
</AppComponentGlobal_LayoutTamplate>
</>
);
}

View File

@@ -11,6 +11,7 @@ import {
Flex,
Grid,
Image,
Loader,
Paper,
Stack,
Text,
@@ -19,12 +20,15 @@ import {
import { IconChevronRight } from "@tabler/icons-react";
import { useAtom } from "jotai";
import { useRouter } from "next/navigation";
import { useState } from "react";
import toast from "react-simple-toasts";
export default function MainCrowd() {
const router = useRouter();
const [changeColor, setChangeColor] = useAtom(gs_investasiFooter);
const [donasiHotMenu, setDonasiHotMenu] = useAtom(gs_donasi_hot_menu)
const [donasiHotMenu, setDonasiHotMenu] = useAtom(gs_donasi_hot_menu);
const [loadingInv, setLoadingInv] = useState(false);
const [loadingDon, setLoadingDon] = useState(false);
return (
<>
<Stack>
@@ -37,10 +41,12 @@ export default function MainCrowd() {
</Paper>
<Stack>
<Paper
p={"xs"}
shadow="lg"
p={"md"}
radius={"md"}
bg={"teal"}
bg={"teal.4"}
onClick={() => {
setLoadingInv(true);
router.push(RouterCrowd.investasi);
setChangeColor(0);
}}
@@ -49,35 +55,39 @@ export default function MainCrowd() {
<Grid.Col span={10}>
<Title order={4}> Investasi</Title>
<Text fz={12}>
Buat investasi dan jual beli saham lebih mudah dengan pengguna lain dengan CROWD INVESTASI
Buat investasi dan jual beli saham lebih mudah dengan pengguna
lain dengan CROWD INVESTASI
</Text>
</Grid.Col>
<Grid.Col span={2}>
<Stack h={"100%"} justify="center" align="center">
<IconChevronRight />
{loadingInv ? <Loader /> : <IconChevronRight />}
</Stack>
</Grid.Col>
</Grid>
</Paper>
<Paper
bg={"blue.4"}
shadow="lg"
bg={"blue.3"}
radius={"md"}
p={"xs"}
p={"md"}
onClick={() => {
router.push(RouterCrowd.donasi)
setDonasiHotMenu(0)
setLoadingDon(true);
router.push(RouterCrowd.donasi);
setDonasiHotMenu(0);
}}
>
<Grid>
<Grid>
<Grid.Col span={10}>
<Title order={4}> Donasi</Title>
<Text fz={12}>
Berbagi info untuk berdonasi lebih luas dan lebih mudah dengan CROWD DONASI
Berbagi info untuk berdonasi lebih luas dan lebih mudah dengan
CROWD DONASI
</Text>
</Grid.Col>
<Grid.Col span={2}>
<Stack h={"100%"} justify="center" align="center">
<IconChevronRight />
{loadingDon ? <Loader /> : <IconChevronRight />}
</Stack>
</Grid.Col>
</Grid>