initial commit

This commit is contained in:
ycc
2026-01-20 19:49:41 +01:00
commit 30a59d7e4e
30 changed files with 12607 additions and 0 deletions

View File

@@ -0,0 +1,48 @@
<section class="oc-hero">
<div class="oc-container oc-hero-inner">
<div class="oc-hero-text">
<h1>
{% if section is defined and section.title %}
{{ section.title }}
{% else %}
{{ config.extra.project_name | default(value="OpenCloud") }}
{% endif %}
</h1>
<p class="oc-hero-tagline">
{{ config.extra.tagline | default(value="A sovereign, peer-to-peer distributed cloud for trusted partners.") }}
</p>
{% if section is defined and section.content %}
<div class="oc-hero-body">
{{ section.content | safe }}
</div>
{% endif %}
<div class="oc-hero-ctas">
{% if config.extra.primary_cta_label and config.extra.primary_cta_url %}
<a href="{{ config.extra.primary_cta_url | safe }}" class="oc-btn oc-btn-primary">
{{ config.extra.primary_cta_label }}
</a>
{% endif %}
{% if config.extra.secondary_cta_label and config.extra.secondary_cta_url %}
<a href="{{ config.extra.secondary_cta_url | safe }}" class="oc-btn oc-btn-secondary">
{{ config.extra.secondary_cta_label }}
</a>
{% endif %}
</div>
</div>
<div class="oc-hero-visual">
<div class="oc-hero-card">
<h2>Distributed • Sovereign • Resilient</h2>
<ul>
<li>Peer-to-peer federation of private clouds</li>
<li>Trust controlled by each participant</li>
<li>No central authority, no lock-in</li>
<li>Open-source and auditable by design</li>
</ul>
</div>
</div>
</div>
</section>