## 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,21 @@
"use client";
import { AppShell } from "@mantine/core";
import React from "react";
import ComponentEvent_HeaderTamplate from "../../component/header_tamplate";
export default function LayoutEvent_DetailPublish({
children,
}: {
children: React.ReactNode;
}) {
return (
<>
<AppShell
header={<ComponentEvent_HeaderTamplate title="Detail Publish" />}
>
{children}
</AppShell>
</>
);
}