fix ui tamplate job

This commit is contained in:
2025-03-12 23:54:42 +08:00
parent 84b1339fb0
commit ba6590cc10
9 changed files with 133 additions and 42 deletions

View File

@@ -1,21 +1,31 @@
"use client";
import {
UIGlobal_LayoutHeaderTamplate,
UIGlobal_LayoutTamplate,
} from "@/app_modules/_global/ui";
import { Component_Header } from "@/app_modules/_global/component/new/component_header";
import UI_NewLayoutTamplate, {
UI_NewChildren,
UI_NewHeader,
} from "@/app_modules/_global/ui/V2_layout_tamplate";
import { Job_ViewNotUserJobVacany } from "../_view";
export function Job_UiNotUserView({ data }: { data: any }) {
return (
<>
<UIGlobal_LayoutTamplate
{/* <UIGlobal_LayoutTamplate
header={
<UIGlobal_LayoutHeaderTamplate title="Job Vacancy" hideButtonLeft />
}
>
<Job_ViewNotUserJobVacany data={data} />
</UIGlobal_LayoutTamplate>
</UIGlobal_LayoutTamplate> */}
<UI_NewLayoutTamplate>
<UI_NewHeader>
<Component_Header title="Job Vacancy" hideButtonLeft />
</UI_NewHeader>
<UI_NewChildren>
<Job_ViewNotUserJobVacany data={data} />
</UI_NewChildren>
</UI_NewLayoutTamplate>
</>
);
}