89 lines
3.8 KiB
Plaintext
89 lines
3.8 KiB
Plaintext
<%= render HeaderComponent.new(title: "Services") %>
|
|
|
|
<%= render MainSimpleComponent.new do %>
|
|
<section>
|
|
<p class="mb-8">
|
|
Your Kosmos account and password currently give you access to these
|
|
services:
|
|
</p>
|
|
<div class="services grid grid-cols-1 sm:grid-cols-2 gap-4 sm:gap-6">
|
|
<div class="border border-gray-300 rounded-md hover:border-gray-400
|
|
bg-cover bg-[center_top_-50px] bg-no-repeat
|
|
bg-[url(/img/logos/icon_xmpp.svg)]">
|
|
<%= link_to "https://wiki.kosmos.org/Services:Chat",
|
|
class: "block h-full px-6 py-6 rounded-md" do %>
|
|
<h3 class="mb-3.5">Chat</h3>
|
|
<p class="text-gray-600">
|
|
Federated chat rooms and instant messaging
|
|
</p>
|
|
<% end %>
|
|
</div>
|
|
<div class="border border-gray-300 rounded-md hover:border-gray-400
|
|
bg-[length:95%] bg-center bg-no-repeat
|
|
bg-[url(/img/logos/icon_discourse.svg)]">
|
|
<%= link_to "https://community.kosmos.org",
|
|
class: "block h-full px-6 py-6 rounded-md" do %>
|
|
<h3 class="mb-3.5">Discourse</h3>
|
|
<p class="text-gray-600">
|
|
Kosmos community forums and user support/help site
|
|
</p>
|
|
<% end %>
|
|
</div>
|
|
<div class="border border-gray-300 rounded-md hover:border-gray-400
|
|
bg-cover bg-[center_top_-20px] bg-no-repeat
|
|
bg-[url(/img/logos/icon_mediawiki.svg)]">
|
|
<%= link_to "https://wiki.kosmos.org",
|
|
class: "block h-full px-6 py-6 rounded-md" do %>
|
|
<h3 class="mb-3.5">Wiki</h3>
|
|
<p class="text-gray-600">
|
|
Kosmos documentation and knowledge base
|
|
</p>
|
|
<% end %>
|
|
</div>
|
|
<div class="border border-gray-300 rounded-md hover:border-gray-400
|
|
bg-cover bg-center sm:bg-[center_top_-140px] bg-no-repeat
|
|
bg-[url(/img/logos/icon_lightning.svg)]">
|
|
<%= link_to wallet_path,
|
|
class: "block h-full px-6 py-6 rounded-md" do %>
|
|
<h3 class="mb-3.5">Wallet</h3>
|
|
<p class="text-gray-600">
|
|
Send and receive sats over the Bitcoin Lightning Network
|
|
</p>
|
|
<% end %>
|
|
</div>
|
|
<div class="border border-gray-300 rounded-md hover:border-gray-400
|
|
bg-cover bg-center bg-no-repeat
|
|
bg-[url(/img/logos/icon_gitea.png)]">
|
|
<%= link_to "https://gitea.kosmos.org",
|
|
class: "block h-full px-6 py-6 rounded-md" do %>
|
|
<h3 class="mb-3.5">Gitea</h3>
|
|
<p class="text-gray-600">
|
|
Code hosting and collaboration for software projects
|
|
</p>
|
|
<% end %>
|
|
</div>
|
|
<div class="border border-gray-300 rounded-md hover:border-gray-400
|
|
bg-cover bg-[center_top_-70px] bg-no-repeat
|
|
bg-[url(/img/logos/icon_droneci.svg)]">
|
|
<%= link_to "https://drone.kosmos.org",
|
|
class: "block h-full px-6 py-6 rounded-md" do %>
|
|
<h3 class="mb-3.5">Drone CI</h3>
|
|
<p class="text-gray-600">
|
|
Continuous integration for software projects on Gitea
|
|
</p>
|
|
<% end %>
|
|
</div>
|
|
<!-- <div class="border border-gray-300 rounded-md hover:border-gray-400 -->
|
|
<!-- bg-[length:80%] bg-[right_top_-30px] bg-no-repeat -->
|
|
<!-- bg-[url(/img/logos/icon_mastodon.svg)]"> -->
|
|
<!-- <%= link_to "https://kosmos.social", class: "block h-full px-6 py-6 rounded-md" do %> -->
|
|
<!-- <h3 class="mb-3.5">Mastodon</h3> -->
|
|
<!-- <p class="text-gray-400"> -->
|
|
<!-- Your account on the Open Social Web -->
|
|
<!-- </p> -->
|
|
<!-- <% end %> -->
|
|
<!-- </div> -->
|
|
</div>
|
|
</section>
|
|
<% end %>
|