1
0
Fork 0
mirror of https://github.com/safing/web synced 2025-04-08 21:19:09 +00:00
safing-web/ownership/index.html
Daniel 2003816cd4 Remove previous members from team page
We are super thankful for all the people who have built Portmaster with us, but it is getting clearer that people are getting the wrong idea from us showing previous members on the website. This is why we decided to remove them. Last week, the legal part of the departure of our Co-Founder David was completed, and we wanted to wait until this was done because technically he was still part of Safing until then, just not in the operational daily business.
2023-10-05 14:20:40 +02:00

107 lines
4.7 KiB
HTML

---
title: Safing Ownership
layout: page
redirect_from:
- /donate/
---
<section class="general-layout">
<div class="showcase-one-container">
<div class="showcase-one-left" style="max-width: 1050px;">
<img src="{{ site.img_url }}page-specific/about/safing-hand.png" alt="">
</div>
<div class="showcase-one-right">
<h1 class="showcase-one-right-title" style="max-width: 450px;">
We own Safing
</h1>
<p class="showcase-one-right-desc">
We do not want parties to gain influence which do not or might not stand
behind our values. That is why in the initial funding phase we took more
personal risks instead of selling parts of our company for easy money.
<br>
<br>
The legal entity behind Safing is <i>Safing ICS Technologies GmbH</i>, a private company registered in Austria.
</p>
<a class="btn-secondary" href="{{ site.company_agreement_url }}">View public registry</a>
</div>
</div>
<div class="showcase-one-container-reverse">
<div class="showcase-one-left" style="max-width: 850px;">
<img src="{{ site.img_url }}page-specific/ownership/influences.png" alt="">
</div>
<div class="showcase-one-right">
<h2 class="showcase-one-right-title" style="max-width: 450px;">
Financed by Grants, Loans and <span style="color: #6188ff;">You</span>
</h2>
<p class="showcase-one-right-desc">
We are thankful for all the partnerships & possibilities that emerged
from our earlier R&D heavy years in order to explore new privacy frontiers.
<br>
<br>
Slowly but surely we migrated into our dream scenario where we only
have to rely on the support and trust of our users. Help us remain independent by
using Portmaster and considering an upgrade.
</p>
<a class="btn-secondary" href="{{ site.pricing_url }}">Support with a Purchase</a>
<a class="btn-tertiary hover-opacity-out" href="#influences">Explore R&D Details</a>
</div>
</div>
<div class="influence-container" id="influences">
<div class="influence-container-top">
<div class="influence-container-top-title-date">
<h2 class="influence-container-top-title">
Influences
</h2>
<span class="influence-container-top-data">updated {{ site.last_finances_update_on }}</span>
</div>
<p class="influence-container-top-desc">
Through these partnerships we not only received funding, but
much needed support, advice, training, encouragement and helpful
criticism.
<br>
<br>
To everyone involved - you know who you are: Thank you so much, we
would not be here without you!
</p>
</div>
<div class="influence-container-bottom">
{% for influence in site.data.finances %}
<div class="card-influence darkmode">
<div class="card-influence-top ">
<div class="card-influence-title-date">
<span class="card-influence-top-title">{{ influence.name }}</span>
<span class="card-influence-top-date">{{ influence.timespan }}</span>
</div>
<p class="card-influence-top-desc">
<div class="markdown-container px-0">
{{ influence.description | markdownify }}
</div>
</p>
</div>
<div class="card-influence-bottom">
{% for year in influence.years %}
<div class="card-influence-bottom-funding">
<span class="card-influence-bottom-funding-date">{{ year.year }}</span>
{% for item in year.items %}
<span class="card-influence-bottom-funding-amount">
{% if item.custom != null %}
<span>{{ item.custom }}</span>
{% else %}
{% if item.status == "completed" %}
<span>Received</span>
{% endif %}
<span class="font-extrabold">{{ item.amount }}€ {{ item.type }}</span>
{% if item.status == "open" %}
<small>held out in prospect</small>
{% endif %}
{% endif %}
</span>
{% endfor %}
</div>
{% endfor %}
</div>
</div>
{% endfor %}
</div>
</div>
</section>