mirror of
https://github.com/safing/web
synced 2025-04-13 07:29:09 +00:00
96 lines
No EOL
5.3 KiB
HTML
96 lines
No EOL
5.3 KiB
HTML
---
|
||
title: Join Safing
|
||
layout: page
|
||
---
|
||
|
||
<section class="general-layout">
|
||
<div class="feature-two-container">
|
||
<div class="feature-two-container-top">
|
||
<h1 class="feature-two-container-top-title" style="max-width: 500px;">
|
||
<span class="text-safing-blue-500">Join Our Team</span> and Take Part in Our Mission
|
||
</h1>
|
||
<p class="feature-two-container-top-desc" style="max-width: 810px;">
|
||
We love freedom, just like you. We are on a mission to help everyone
|
||
withstand today’s mass surveillance so they can reclaim control over
|
||
their data. Play an active part in tackling some of online privacy’s
|
||
root problems and have a huge impact on people’s lives!
|
||
</p>
|
||
<div class="element-x-center-max space-x-7">
|
||
<a class="link-primary" href="#open-postions">Open Positions</a>
|
||
</div>
|
||
</div>
|
||
<div class="feature-two-container-bottom">
|
||
<div class="feature-two-container-bottom-content">
|
||
<i class="icon-users feature-two-container-bottom-content-icon"></i>
|
||
<h3 class="feature-two-container-bottom-content-title">Attractive Workplace</h3>
|
||
<p class="feature-two-container-bottom-content-desc">
|
||
You’ll have a fully paid setup with the latest technology and
|
||
ergonomic office furniture. We are currently in a beautiful
|
||
office in Baden, Lower Austria, but there is the possibility
|
||
to work remotely. Unfortunately, this is restricted to Austria
|
||
as of now. However, we will help you with settling in Austria
|
||
if you decide to join us.
|
||
</p>
|
||
</div>
|
||
<div class="feature-two-container-bottom-content">
|
||
<i class="icon-scales feature-two-container-bottom-content-icon"></i>
|
||
<h3 class="feature-two-container-bottom-content-title">Strive for a Healthy Work-Life Balance</h3>
|
||
<p class="feature-two-container-bottom-content-desc">
|
||
Development is often tied to long working hours. That is why we
|
||
want to you to have enough time for recreation. Austria is a
|
||
great workplace where you will enjoy health insurance and five
|
||
weeks of paid vacation. Additionally, all new parents have the
|
||
possibility to take family leave, regardless of gender.
|
||
</p>
|
||
</div>
|
||
<div class="feature-two-container-bottom-content">
|
||
<i class="icon-chart feature-two-container-bottom-content-icon"></i>
|
||
<h3 class="feature-two-container-bottom-content-title">Purpose-Driven Growth</h3>
|
||
<p class="feature-two-container-bottom-content-desc">
|
||
Safing’s drive comes out of conviction and commitment to the
|
||
cause of privacy, not for generating profit. We strive for
|
||
creating sustainable high quality software solutions to
|
||
serious problems. This requires constant growth and
|
||
consistency. If this resonates with you, you’re welcome to
|
||
grow with us!
|
||
</p>
|
||
</div>
|
||
<div class="feature-two-container-bottom-content">
|
||
<i class="icon-heart feature-two-container-bottom-content-icon"></i>
|
||
<h3 class="feature-two-container-bottom-content-title">Transparency & Open Source</h3>
|
||
<p class="feature-two-container-bottom-content-desc">
|
||
Handling sensitive data requires a lot of trust. Help us
|
||
building this trust by contributing to our code base. Open
|
||
Source is a way of being transparent and gives other the
|
||
opportunity to hold us accountable. Be the additional pair
|
||
of eyes that increases our transparency.
|
||
</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="feature-two-container" id="open-postions">
|
||
<div class="feature-two-container-top">
|
||
<h2 class="feature-two-container-top-title">
|
||
Open Positions
|
||
</h2>
|
||
</div>
|
||
<div class="space-y-4 mx-auto" style="max-width: 900px;">
|
||
{% assign jobs = site.jobs %}
|
||
{% if jobs.size > 0 %}
|
||
{% for job in jobs %}
|
||
<div class="card darkmode p-7 flex items-center">
|
||
<div class="flex space-x-2 items-center">
|
||
<h3 class="text-xl block">{{ job.title }}</h3>
|
||
<span class="text-sm text-safing-gray-300 block">{{ job.extraInfo }}</span>
|
||
</div>
|
||
<a class="btn-secondary ml-auto" href="{{ job.url }}">View More</a>
|
||
</div>
|
||
{% endfor %}
|
||
{%- else -%}
|
||
<div class="bg-gray-200 p-7">
|
||
<span class="text-md text-center block">We currently have no specific open positions. If you absolutely love our vision, contact us anyway at <a class="link-primary" href="mailto:{{ site.email }}">{{ site.email }}</a>
|
||
</div>
|
||
{% endif %}
|
||
</div>
|
||
</div>
|
||
</section> |