## feat
- Tampilan detail status
- Tampilan detail main
- Tampilan detail kontribusi
- Tampilan edit
### No issue
This commit is contained in:
2024-01-24 12:07:41 +08:00
parent 31422db25d
commit bec87028fd
63 changed files with 1619 additions and 39 deletions

View File

@@ -0,0 +1,13 @@
import { LayoutEvent_Create } from "@/app_modules/event";
export default async function Layout({
children,
}: {
children: React.ReactNode;
}) {
return (
<>
<LayoutEvent_Create>{children}</LayoutEvent_Create>
</>
);
}

View File

@@ -0,0 +1,9 @@
import { Event_Create } from "@/app_modules/event";
import { Event_getListUser } from "@/app_modules/event/fun/get/get_list_user";
import _ from "lodash";
export default async function Page() {
const listUser = await Event_getListUser();
return <Event_Create listUser={listUser as any} />;
}

View File

@@ -0,0 +1,11 @@
import { LayoutEvent_DetailDraft } from "@/app_modules/event";
import React from "react";
export default async function Page({
children,
}: {
children: React.ReactNode;
}) {
return <LayoutEvent_DetailDraft>{children}</LayoutEvent_DetailDraft>;
}

View File

@@ -0,0 +1,5 @@
import { Event_DetailDraft } from "@/app_modules/event";
export default async function Page() {
return <Event_DetailDraft />;
}

View File

@@ -0,0 +1,14 @@
import { LayoutEvent_DetailKontribusi } from "@/app_modules/event";
import React from "react";
export default async function Layout({
children,
}: {
children: React.ReactNode;
}) {
return (
<>
<LayoutEvent_DetailKontribusi>{children}</LayoutEvent_DetailKontribusi>
</>
);
}

View File

@@ -0,0 +1,9 @@
import { Event_DetailKontribusi } from "@/app_modules/event";
export default async function Page() {
return (
<>
<Event_DetailKontribusi />
</>
);
}

View File

@@ -0,0 +1,15 @@
import { LayoutEvent_DetailMain } from "@/app_modules/event";
import { AppShell } from "@mantine/core";
import React from "react";
export default async function Layout({
children,
}: {
children: React.ReactNode;
}) {
return (
<>
<LayoutEvent_DetailMain>{children}</LayoutEvent_DetailMain>
</>
);
}

View File

@@ -0,0 +1,7 @@
import { Event_DetailMain } from "@/app_modules/event";
export default async function Page() {
return <>
<Event_DetailMain/>
</>
}

View File

@@ -0,0 +1,11 @@
import { LayoutEvent_DetailPublish } from "@/app_modules/event";
import React from "react";
export default async function Page({
children,
}: {
children: React.ReactNode;
}) {
return <LayoutEvent_DetailPublish>{children}</LayoutEvent_DetailPublish>;
}

View File

@@ -0,0 +1,5 @@
import { Event_DetailPublish } from "@/app_modules/event";
export default async function Page() {
return <Event_DetailPublish />;
}

View File

@@ -0,0 +1,11 @@
import { LayoutEvent_DetailReject } from "@/app_modules/event";
import React from "react";
export default async function Page({
children,
}: {
children: React.ReactNode;
}) {
return <LayoutEvent_DetailReject>{children}</LayoutEvent_DetailReject>;
}

View File

@@ -0,0 +1,5 @@
import { Event_DetailReject } from "@/app_modules/event";
export default async function Page() {
return <Event_DetailReject />;
}

View File

@@ -0,0 +1,11 @@
import { LayoutEvent_DetailReview } from "@/app_modules/event";
import React from "react";
export default async function Page({
children,
}: {
children: React.ReactNode;
}) {
return <LayoutEvent_DetailReview>{children}</LayoutEvent_DetailReview>
}

View File

@@ -0,0 +1,6 @@
import { Event_DetailReview } from "@/app_modules/event";
export default async function Page() {
return <Event_DetailReview />;
}

View File

@@ -0,0 +1,8 @@
import { LayoutEvent_Edit } from "@/app_modules/event";
import React from "react";
export default async function Layout({children}: {children: React.ReactNode}) {
return <>
<LayoutEvent_Edit>{children}</LayoutEvent_Edit>
</>
}

View File

@@ -0,0 +1,7 @@
import { Event_Edit } from "@/app_modules/event";
export default async function Page() {
return<>
<Event_Edit/>
</>
}

View File

@@ -0,0 +1,11 @@
"use client";
import { Event_Beranda } from "@/app_modules/event";
export default function Page() {
return (
<>
<Event_Beranda />
</>
);
}

View File

@@ -0,0 +1,8 @@
import { Event_Kontribusi } from "@/app_modules/event";
export default async function Page() {
return<>
<Event_Kontribusi/>
</>
}

View File

@@ -0,0 +1,8 @@
import { LayoutEvent_Main } from "@/app_modules/event";
import React from "react";
export default async function Layout({children}:{children: React.ReactNode}) {
return<>
<LayoutEvent_Main>{children}</LayoutEvent_Main>
</>
}

View File

@@ -0,0 +1,5 @@
import { Event_StatusPage } from "@/app_modules/event";
export default async function Page() {
return <Event_StatusPage/>
}

View File

@@ -0,0 +1,5 @@
import { Event_SplashScreen } from "@/app_modules/event";
export default async function Page() {
return <Event_SplashScreen />;
}