49 lines
1.9 KiB
HTML
49 lines
1.9 KiB
HTML
<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>
|