Skip to content

Commit

Permalink
refactor(careers): make more clear that this is a hybrid position
Browse files Browse the repository at this point in the history
  • Loading branch information
chrtze committed Oct 28, 2024
1 parent 6eb130c commit c20ceeb
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions sites/xyflow.com/src/sites/careers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { MapPinIcon } from '@heroicons/react/24/solid';

const openings: JobOpeningProps[] = [
{
location: 'Berlin',
location: 'Berlin (hybrid)',
title: 'Fullstack Developer',
description: [
"Our libraries React Flow and Svelte Flow are at the core of what we do, \
Expand All @@ -26,6 +26,7 @@ const openings: JobOpeningProps[] = [
'Passionate about independent open-source software.',
'Interested in the different parts of our daily business: libraries, \
pro-platform, docs, website, discord, support.',
'Based in or around Berlin',
],
tasks: [
'Improve the checkout flow with Stripe on the Pro Platform.',
Expand All @@ -41,6 +42,7 @@ const openings: JobOpeningProps[] = [
'Six weeks of vacation per year',
'Salary range: 50k - 80k',
'Monthly 1:1s, semi annual reviews',
'Hybrid work model',
],
},
];
Expand Down Expand Up @@ -171,14 +173,15 @@ function JobOpening({
candidate,
tasks,
benefits,
location,
}: JobOpeningProps) {
return (
<Section
id={slugify(title)}
className="max-w-screen-lg bg-slate-50 rounded-xl p-4 md:p-8 lg:p-12 mx-auto space-y-6"
>
<div className="flex gap-2 items-center text-md">
<MapPinIcon className="w-5 h-5" /> Berlin
<MapPinIcon className="w-5 h-5" /> {location}
</div>
<Heading size="md" className="mb-12">
{title}
Expand Down

0 comments on commit c20ceeb

Please sign in to comment.