Skip to content

Commit

Permalink
Remove current vacancies from website
Browse files Browse the repository at this point in the history
  • Loading branch information
AdityaKhatri committed Dec 1, 2023
1 parent 717b0f3 commit e06f9f6
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 13 deletions.
2 changes: 1 addition & 1 deletion pages/careers/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ function CareerPage() {
/>
)}
>
{vacancies && (
{vacancies.length > 0 && (
<Container contentClassName={styles.careerContent}>
<Header
title="Job openings"
Expand Down
26 changes: 14 additions & 12 deletions src/components/careers/vacancies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,19 @@ interface Vacancy {

// NOTE: these are actual job descriptions
const vacancies: Vacancy[] = [
// {
// id: '1',
// position: 'Sr. Backend Developer',
// department: 'Development',
// jobLevel: 'Mid / Senior',
// openings: 1,
// experience: '2 years in the same field',
// category: 'Full Time',
// formLink: 'https://docs.google.com/forms/d/e/1FAIpQLSfYCcQMUk5wGKQTWFsFF_lqXv12BI_DTtbXpmWctrUHxhfTOg/viewform?usp=share_link',
// applyBefore: 'June 30, 2023',
// salary: 'Best in the industry / Negotiable',
// },
/*
{
id: '1',
position: 'Sr. Backend Developer',
department: 'Development',
jobLevel: 'Mid / Senior',
openings: 1,
experience: '2 years in the same field',
category: 'Full Time',
formLink: 'https://docs.google.com/forms/d/e/1FAIpQLSfYCcQMUk5wGKQTWFsFF_lqXv12BI_DTtbXpmWctrUHxhfTOg/viewform?usp=share_link',
applyBefore: 'June 30, 2023',
salary: 'Best in the industry / Negotiable',
},
{
id: '3',
position: 'Sr. Frontend Developer',
Expand All @@ -51,6 +52,7 @@ const vacancies: Vacancy[] = [
applyBefore: 'August 31, 2023',
salary: 'Best in the industry / Negotiable',
},
*/
];

// Note: When no vacancies, comment above vacancies and uncomment below vacancies:
Expand Down

0 comments on commit e06f9f6

Please sign in to comment.