test server lagi

This commit is contained in:
2024-04-03 13:23:24 +08:00
parent fe14211951
commit f6649fe93e
2 changed files with 0 additions and 28 deletions

View File

@@ -1,19 +0,0 @@
import ComponentColab_HeaderTamplate from "@/app_modules/colab/component/header_tamplate";
import { AppShell } from "@mantine/core";
import React from "react";
export default async function Layout({
children,
}: {
children: React.ReactNode;
}) {
return (
<>
<AppShell
header={<ComponentColab_HeaderTamplate title="Partisipasi Proyek" />}
>
{children}
</AppShell>
</>
);
}

View File

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