feat(terms-page): enhance layout and readability

Refactored the Terms of Service page to improve its structure and aesthetic appeal. Introduced centered headings, more prominent section dividers, and simplified the presentation of content for better user engagement and readability. These changes aim to make the Terms of Service easier to navigate and understand, hopefully increasing the likelihood that visitors will read and comprehend their obligations and our commitments.

No changes to the contents of the terms were made.
This commit is contained in:
Kumi 2024-05-28 07:41:35 +02:00
parent 0601a39829
commit cfe6f6d891
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -2,12 +2,15 @@
{% block title %}Terms of Service{% endblock %} {% block title %}Terms of Service{% endblock %}
{% block content %} {% block content %}
<div class="container"> <div class="container">
<h1>Terms of Service</h1> <div class="text-center mb-5">
<p> <h1 class="special-header fancy-text-primary">Terms of Service</h1>
<p class="lead">
These are the terms of service for the website private.coffee and all These are the terms of service for the website private.coffee and all
services provided under this domain and its subdomains. Please read them services provided under this domain and its subdomains. Please read them
carefully. carefully.
</p> </p>
</div>
<div class="section">
<h2>1. Who are we?</h2> <h2>1. Who are we?</h2>
<p>The website private.coffee is run by:</p> <p>The website private.coffee is run by:</p>
<address> <address>
@ -23,12 +26,15 @@
Email: Email:
<a href="mailto:support@private.coffee">support@private.coffee</a> <a href="mailto:support@private.coffee">support@private.coffee</a>
</p> </p>
</div>
<div class="section">
<h2>2. What services do we provide?</h2> <h2>2. What services do we provide?</h2>
<p> <p>
The website private.coffee provides a collection of services that respect The website private.coffee provides a collection of services that respect
your privacy. These services include: your privacy. These services include:
</p> </p>
<ul> <ul>
<li>Information about the Private.coffee association</li>
<li> <li>
Proxy servers to several proprietary services (like YouTube, Twitter, Proxy servers to several proprietary services (like YouTube, Twitter,
etc.) etc.)
@ -40,6 +46,8 @@
You can find more information about these services on the You can find more information about these services on the
<a href="/">main page</a>. <a href="/">main page</a>.
</p> </p>
</div>
<div class="section">
<h2>3. What are your obligations?</h2> <h2>3. What are your obligations?</h2>
<p> <p>
a. We provide these services to you for free. In return, we ask you to a. We provide these services to you for free. In return, we ask you to
@ -93,6 +101,8 @@
reason. We will try to give you as much notice as possible before doing so, reason. We will try to give you as much notice as possible before doing so,
but we are not required to do so. but we are not required to do so.
</p> </p>
</div>
<div class="section">
<h2>4. What are our obligations?</h2> <h2>4. What are our obligations?</h2>
<p> <p>
a. We will do our best to provide you with a stable and reliable service. a. We will do our best to provide you with a stable and reliable service.
@ -141,4 +151,5 @@
We may also report the users involved to the appropriate authorities. We may also report the users involved to the appropriate authorities.
</p> </p>
</div> </div>
</div>
{% endblock %} {% endblock %}