29 lines
1.1 KiB
Plaintext
29 lines
1.1 KiB
Plaintext
<%= render HeaderComponent.new(title: "Contributions") %>
|
|
|
|
<%= render MainWithTabnavComponent.new(tabnav_partial: "shared/tabnav_contributions") do %>
|
|
<section>
|
|
<p class="mb-12">
|
|
Your financial contributions to the development and upkeep of Kosmos
|
|
software and services.
|
|
</p>
|
|
<% if @donations.any? %>
|
|
<%= render partial: "contributions/donations/list",
|
|
locals: { donations: @donations } %>
|
|
<% else %>
|
|
<div class="text-center">
|
|
<p class="mt-8 mb-12 inline-flex align-center items-center">
|
|
<%= image_tag("/img/illustrations/undraw_savings_re_eq4w.svg", class: 'h-48') %>
|
|
</p>
|
|
<h3>
|
|
No donations yet
|
|
</h3>
|
|
<p class="text-gray-500">
|
|
The donation process is not automated yet.<br>Please
|
|
<a href="https://wiki.kosmos.org/Main_Page#Community_.2F_Getting_in_touch_.2F_Getting_involved" class="ks-text-link" target="_blank">contact us</a>
|
|
if you'd like to contribute this way right now.
|
|
</p>
|
|
</div>
|
|
<% end %>
|
|
</section>
|
|
<% end %>
|