#style: UI Katalog

Deskripsi:
- UI Katalog selesai
- UI Portofolio selesai
- UI Profile selesa
## NO Isuuee
This commit is contained in:
2024-07-10 17:07:41 +08:00
parent 5f620c030b
commit ab6f2fe8a7
88 changed files with 1288 additions and 1117 deletions

View File

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

View File

@@ -4,14 +4,15 @@ import { portofolio_getOneById } from "@/app_modules/katalog/portofolio/fun/get/
export default async function Page({ params }: { params: { id: string } }) {
const getPorto = await portofolio_getOneById(params.id);
const userLoginId = await user_getOneUserId()
const userLoginId = await user_getOneUserId();
return (
<>
{/* {JSON.stringify(getPorto)} */}
<ViewPortofolio dataPorto={getPorto as any} userLoginId={userLoginId as any} />
<ViewPortofolio
dataPorto={getPorto as any}
userLoginId={userLoginId as any}
/>
</>
);
}