#Job Vacancy

## feat
- Tampilan user
### No Issuue
This commit is contained in:
2024-02-21 15:17:34 +08:00
parent 44f585a599
commit 7f3196afef
65 changed files with 2216 additions and 448 deletions

View File

@@ -0,0 +1,26 @@
"use client";
import { AppShell } from "@mantine/core";
import React from "react";
import ComponentJob_HeaderTamplate from "../component/header_tamplate";
export default function LayoutJob_NonUserView({
children,
}: {
children: React.ReactNode;
}) {
return (
<>
<AppShell
header={
<ComponentJob_HeaderTamplate
hideBack={true}
title="JOB VACANCY HIMPI BADUNG"
/>
}
>
{children}
</AppShell>
</>
);
}

View File

@@ -0,0 +1,15 @@
"use client";
import { Stack, Text } from "@mantine/core";
import ComponentJob_DetailData from "../component/detail/detail_data";
export default function Job_NonUserView() {
return (
<>
<Stack>
<ComponentJob_DetailData />
<Text></Text>
</Stack>
</>
);
}