diff --git a/src/app/dev/colab/main/beranda/loading.tsx b/src/app/dev/colab/main/beranda/loading.tsx
deleted file mode 100644
index 380b3fcd..00000000
--- a/src/app/dev/colab/main/beranda/loading.tsx
+++ /dev/null
@@ -1,9 +0,0 @@
-import ComponentGlobal_V2_LoadingPage from "@/app_modules/_global/loading_page_v2";
-
-export default async function Page() {
- return (
- <>
-
- >
- );
-}
diff --git a/src/app_modules/colab/create/index.tsx b/src/app_modules/colab/create/index.tsx
index 4e850f85..e02e3e78 100644
--- a/src/app_modules/colab/create/index.tsx
+++ b/src/app_modules/colab/create/index.tsx
@@ -21,6 +21,8 @@ import { ComponentGlobal_NotifikasiBerhasil } from "@/app_modules/_global/notif_
import { ComponentGlobal_NotifikasiGagal } from "@/app_modules/_global/notif_global/notifikasi_gagal";
import _ from "lodash";
import { ComponentGlobal_NotifikasiPeringatan } from "@/app_modules/_global/notif_global/notifikasi_peringatan";
+import { MainColor } from "@/app_modules/_global/color/color_pallet";
+import ComponentGlobal_InputCountDown from "@/app_modules/_global/component/input_countdown";
export default function Colab_Create({
listIndustri,
@@ -39,6 +41,12 @@ export default function Colab_Create({
<>
*/}
-
>
@@ -154,14 +198,30 @@ function ButtonAction({ value }: { value: any }) {
});
}
+ // console.log(value);
+
return (
<>
diff --git a/src/app_modules/colab/create/layout.tsx b/src/app_modules/colab/create/layout.tsx
index 2dd809ab..05e86b3e 100644
--- a/src/app_modules/colab/create/layout.tsx
+++ b/src/app_modules/colab/create/layout.tsx
@@ -3,6 +3,8 @@
import AppComponentGlobal_LayoutTamplate from "@/app_modules/_global/component_layout_tamplate";
import React from "react";
import ComponentColab_HeaderTamplate from "../component/header_tamplate";
+import UIGlobal_LayoutTamplate from "@/app_modules/_global/ui/ui_layout_tamplate";
+import UIGlobal_LayoutHeaderTamplate from "@/app_modules/_global/ui/ui_header_tamplate";
export default function LayoutColab_Create({
children,
@@ -11,11 +13,11 @@ export default function LayoutColab_Create({
}) {
return (
<>
- }
+ }
>
{children}
-
+
>
);
}
diff --git a/src/app_modules/colab/main/beranda.tsx b/src/app_modules/colab/main/beranda.tsx
index 957de11f..8f53e41a 100644
--- a/src/app_modules/colab/main/beranda.tsx
+++ b/src/app_modules/colab/main/beranda.tsx
@@ -1,31 +1,22 @@
"use client";
import { RouterColab } from "@/app/lib/router_hipmi/router_colab";
-import { RouterForum } from "@/app/lib/router_hipmi/router_forum";
-import ComponentGlobal_AuthorNameOnHeader from "@/app_modules/_global/author_name_on_header";
import {
ActionIcon,
Affix,
Card,
- Center,
- Grid,
- Paper,
Stack,
- Text,
- Textarea,
- Title,
- rem,
+ rem
} from "@mantine/core";
import { useWindowScroll } from "@mantine/hooks";
import { IconPencilPlus } from "@tabler/icons-react";
import { useRouter } from "next/navigation";
import { useState } from "react";
import ComponentColab_CardSectionData from "../component/card_view/card_section_data";
-import ComponentColab_SectionHeaderAuthorName from "../component/card_view/card_section_header_author_name";
-import ComponentGlobal_V2_LoadingPage from "@/app_modules/_global/loading_page_v2";
import ComponentColab_CardSectionHeaderAuthorName from "../component/card_view/card_section_header_author_name";
-import { MODEL_COLLABORATION } from "../model/interface";
import ComponentColab_JumlahPartisipan from "../component/card_view/card_section_jumlah_partisipan";
+import { MODEL_COLLABORATION } from "../model/interface";
+import ComponentGlobal_CreateButton from "@/app_modules/_global/component/button_create";
export default function Colab_Beranda({
listData,
@@ -40,7 +31,7 @@ export default function Colab_Beranda({
return (
<>
-
+ {/*
0 ? 0.5 : ""}
@@ -58,7 +49,9 @@ export default function Colab_Beranda({
>
-
+ */}
+
+
{/*
{JSON.stringify(listData, null, 2)} */}
diff --git a/src/app_modules/colab/main/layout.tsx b/src/app_modules/colab/main/layout.tsx
index 0d9c6cc4..f0a69ed6 100644
--- a/src/app_modules/colab/main/layout.tsx
+++ b/src/app_modules/colab/main/layout.tsx
@@ -9,20 +9,24 @@ import {
Footer,
Grid,
Indicator,
+ SimpleGrid,
Stack,
- Text
+ Text,
} from "@mantine/core";
import {
IconBell,
IconHome,
IconMessages,
- IconUsersGroup
+ IconUsersGroup,
} from "@tabler/icons-react";
import { useAtom } from "jotai";
import { useRouter } from "next/navigation";
import React, { useState } from "react";
import ComponentColab_HeaderTamplate from "../component/header_tamplate";
import { gs_colab_hot_menu } from "../global_state";
+import UIGlobal_LayoutTamplate from "@/app_modules/_global/ui/ui_layout_tamplate";
+import UIGlobal_LayoutHeaderTamplate from "@/app_modules/_global/ui/ui_header_tamplate";
+import { MainColor } from "@/app_modules/_global/color/color_pallet";
export default function LayoutColab_Main({
children,
@@ -78,51 +82,74 @@ export default function LayoutColab_Main({
return (
<>
- }
- // route2={RouterColab.proyek}
+ routerLeft={RouterHome.main_home}
/>
}
footer={
-
+
+ {listFooter.map((e) => (
+
+ {
+ router.replace(e.path, {scroll: false});
+ setHotMenu(e.id);
+ }}
+ >
+ {e.icon}
+
+
+ {e.name}
+
+
+ ))}
+
+
+ //
}
>
{children}
-
+
>
);
}
diff --git a/src/app_modules/colab/splash/index.tsx b/src/app_modules/colab/splash/index.tsx
index 659b4d97..48839abb 100644
--- a/src/app_modules/colab/splash/index.tsx
+++ b/src/app_modules/colab/splash/index.tsx
@@ -1,8 +1,9 @@
"use client";
import { RouterColab } from "@/app/lib/router_hipmi/router_colab";
-import { Center, Image, Paper } from "@mantine/core";
+import UIGlobal_SplashScreen from "@/app_modules/_global/ui/ui_splash";
import { useShallowEffect } from "@mantine/hooks";
+import { IconAffiliate } from "@tabler/icons-react";
import { useAtom } from "jotai";
import { useRouter } from "next/navigation";
import { gs_colab_hot_menu } from "../global_state";
@@ -15,17 +16,18 @@ export default function Colab_Splash() {
setTimeout(() => {
setHotMenu(1);
// setStatus("Publish");
- router.replace(RouterColab.beranda);
+ router.replace(RouterColab.beranda, {scroll: false});
}, 1000);
}, []);
return (
<>
-
+ {/*
-
+ */}
+ } />
>
);
}