-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjob.ts
51 lines (49 loc) · 968 Bytes
/
job.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import { BiBriefcase } from "react-icons/bi";
const job = {
name: "job",
title: "Job",
type: "document",
icon: BiBriefcase,
fields: [
{
name: "name",
title: "Company Name",
type: "string",
description: "What is the name of the company?",
},
{
name: "jobTitle",
title: "Job Title",
type: "string",
description: "Enter the job title. E.g: Software Developer",
},
{
name: "logo",
title: "Company Logo",
type: "image",
},
{
name: "url",
title: "Company Website",
type: "url",
},
{
name: "description",
title: "Job Description",
type: "text",
rows: 3,
description: "Write a brief description about this role",
},
{
name: "startDate",
title: "Start Date",
type: "date",
},
{
name: "endDate",
title: "End Date",
type: "date",
},
],
};
export default job;