1
0
Fork 0
mirror of https://github.com/safing/web synced 2025-04-17 17:39:08 +00:00
safing-web/ownership/index.html

107 lines
4.7 KiB
HTML

---
title: Safing Ownership
layout: page
redirect_from:
- /donate/
---
<section class="general-layout">
<div class="showcase-container">
<div class="showcase-left" style="max-width: 1050px;">
<img src="{{ site.img_url }}page-specific/ownership/ownership.png" alt="">
</div>
<div class="showcase-right">
<h1 class="showcase-right-title" style="max-width: 450px;">
We own Safing
</h1>
<p class="showcase-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-container-reverse">
<div class="showcase-left" style="max-width: 850px;">
<img src="{{ site.img_url }}page-specific/ownership/influences.png" alt="">
</div>
<div class="showcase-right">
<h2 class="showcase-right-title" style="max-width: 450px;">
Financed by Grants, Loans and <span style="color: #6188ff;">You</span>
</h2>
<p class="showcase-right-desc">
We are thankful for all the partnerships & possibilities that are emerging
from our R&D heavy years in which we are exploring new privacy frontiers.
<br>
<br>
Slowly but surely we are migrating into our dream scenario where we only
have to rely on the support and trust of our users. Help us get there by
using the Portmaster and later down the road, purchasing the SPN.
</p>
<a class="btn-secondary" href="#influences">Explore the Details</a>
<a class="btn-tertiary hover-opacity-out" href="{{ site.spn_url }}#pricing">Support with a Purchase</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 November 2021</span>
</div>
<p class="influence-container-top-desc">
Through these partnerships we are not only receiving 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">
<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>