API Job
Add: - api-client/api-job: kumpulan fetch api Fix: - UI beranda , status sudah terintergrasi dengan API - UI detail status, detail utama sudah terintergrasi dengan API - Search pada beranda sudah terintegrasi - Edit sudah terintergrasi ### No Issue
This commit is contained in:
@@ -1,28 +1,34 @@
|
||||
import { BaseBox, StackCustom, DummyLandscapeImage, TextCustom } from "@/components";
|
||||
import {
|
||||
BaseBox,
|
||||
StackCustom,
|
||||
DummyLandscapeImage,
|
||||
TextCustom,
|
||||
} from "@/components";
|
||||
|
||||
export default function Job_BoxDetailSection({data}: {data: any}) {
|
||||
return (
|
||||
<>
|
||||
<BaseBox>
|
||||
<StackCustom gap={"lg"}>
|
||||
<DummyLandscapeImage />
|
||||
export default function Job_BoxDetailSection({ data }: { data: any }) {
|
||||
return (
|
||||
<>
|
||||
<BaseBox>
|
||||
<StackCustom gap={"lg"}>
|
||||
{data && data.imageId && (
|
||||
<DummyLandscapeImage imageId={data?.imageId} />
|
||||
)}
|
||||
|
||||
<TextCustom align="center" bold size="large">
|
||||
{data?.posisi}
|
||||
</TextCustom>
|
||||
<TextCustom align="center" bold size="large">
|
||||
{data?.title || "-"}
|
||||
</TextCustom>
|
||||
|
||||
<StackCustom gap={"sm"}>
|
||||
<TextCustom bold>Syarat & Ketentuan :</TextCustom>
|
||||
<TextCustom>{data?.syaratKetentuan}</TextCustom>
|
||||
</StackCustom>
|
||||
|
||||
<StackCustom gap={"sm"}>
|
||||
<TextCustom bold>Deskripsi :</TextCustom>
|
||||
<TextCustom>{data?.deskripsi}</TextCustom>
|
||||
</StackCustom>
|
||||
<StackCustom gap={"sm"}>
|
||||
<TextCustom bold>Syarat & Ketentuan :</TextCustom>
|
||||
<TextCustom>{data?.content || "-"}</TextCustom>
|
||||
</StackCustom>
|
||||
</BaseBox>
|
||||
</>
|
||||
);
|
||||
|
||||
<StackCustom gap={"sm"}>
|
||||
<TextCustom bold>Deskripsi :</TextCustom>
|
||||
<TextCustom>{data?.deskripsi || "-"}</TextCustom>
|
||||
</StackCustom>
|
||||
</StackCustom>
|
||||
</BaseBox>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user