## 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,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 />;
}