Skip to content

Commit

Permalink
Merge pull request #142 from sparksuite/introduce-office-assistant-po…
Browse files Browse the repository at this point in the history
…sition

Introduce a new "office assistant" position
  • Loading branch information
WesCossick authored Oct 17, 2024
2 parents 389f983 + 1b2f6f1 commit e23c6dd
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
14 changes: 13 additions & 1 deletion src/components/compensation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -164,10 +164,22 @@ const Compensation: React.FC = () => {
<i className='far fa-fw fa-sliders-up' /> Flexible working hours
</div>

<div>
<div
style={{
display: selectedPosition !== 'Office Assistant' ? 'block' : 'none',
}}
>
<i className='far fa-fw fa-house-building' /> Flexible remote work
</div>

<div
style={{
display: selectedPosition === 'Office Assistant' ? 'block' : 'none',
}}
>
<i className='far fa-fw fa-gift' /> Work anniversary swag
</div>

<div>
<i className='far fa-fw fa-pot-food' /> Free-lunch Fridays
</div>
Expand Down
18 changes: 18 additions & 0 deletions src/data.json
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,24 @@
]
}
]
},
{
"name": "Administration",
"descriptor": "in administration",
"roles": [
{
"levels": [
{
"title": "Office Assistant",
"description": "An office assistant—a part-time role requiring 20 hours per week—is responsible for keeping our office running smoothly through a myriad of responsibilities. They have experience supporting a team in an office setting, and they have exposure to a variety of office-based duties. They play an integral part in keeping the office an enjoyable space by ensuring office supplies are stocked and orderly; checking and distributing mail appropriately; and maintaining equipment throughout. The office assistant has a hand in fostering positive company culture by helping plan and organize company events, replenishing the break room, and performing other duties that set the team up for success. They are reliable, dependable, and capable of performing their tasks in a timely fashion with limited oversight. They are friendly, approachable, and eager to collaborate with their teammates.",
"startingSalary": 17500,
"annualRaises": [
0.05, 0.035, 0.03, 0.025, 0.02, 0.02, 0.015, 0.015
]
}
]
}
]
}
]
}

0 comments on commit e23c6dd

Please sign in to comment.