Create Proyek Kolaborasi

# feat
- Create proyek
- Edit proyek
- User lain join proyek
- Buat gruo diskusi
## No issue
This commit is contained in:
2024-04-25 12:13:08 +08:00
parent d3ea37d854
commit 2929459e95
51 changed files with 997 additions and 248 deletions

View File

@@ -9,9 +9,11 @@ import { RouterColab } from "@/app/lib/router_hipmi/router_colab";
export default function LayoutColab_MainDetail({
children,
colabId,
isAuthor,
}: {
children: React.ReactNode;
colabId: string;
isAuthor: boolean;
}) {
return (
<>
@@ -19,8 +21,8 @@ export default function LayoutColab_MainDetail({
header={
<ComponentColab_HeaderTamplate
title="Detail"
icon={<IconEdit />}
route2={RouterColab.edit + colabId}
icon={isAuthor ? <IconEdit /> : ""}
route2={isAuthor ? RouterColab.edit + colabId : ""}
/>
}
>