privatecoffee-website/index.html

156 lines
5.3 KiB
HTML
Raw Normal View History

2023-03-09 16:18:31 +00:00
<!DOCTYPE html>
<!-- This file was created as part of the Private.coffee project
It is licensed under the MIT license
For more information, please visit https://private.coffee -->
<html>
<head>
<title>Private.coffee</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
2023-03-09 17:18:02 +00:00
<link rel="icon" type="image/svg+xml" href="/assets/img/logo.svg" />
<link rel="stylesheet" href="/assets/css/base.css" />
<link rel="stylesheet" href="/dist/css/bootstrap.min.css" />
<script src="/dist/js/jquery.min.js"></script>
<script src="/dist/js/popper.min.js"></script>
<script src="/dist/js/bootstrap.min.js"></script>
2023-03-09 16:18:31 +00:00
</head>
<body>
<nav class="navbar navbar-expand-sm bg-dark navbar-dark">
<a class="navbar-brand" href="/">
<img
class="navbar-brand-img"
2023-03-09 17:18:02 +00:00
src="/assets/img/logo.svg"
2023-03-09 16:18:31 +00:00
alt="Private.coffee logo"
/>
Private.coffee
</a>
<ul class="navbar-nav">
2023-03-14 14:17:16 +00:00
<li class="nav-item dropdown">
<a
class="nav-link dropdown-toggle"
href="#"
id="navbardrop"
data-toggle="dropdown"
2023-03-12 07:57:43 +00:00
>Status Page</a
>
2023-03-14 14:17:16 +00:00
<div class="dropdown-menu">
<a class="dropdown-item" href="https://status.private.coffee"
>Clearnet</a
>
<a class="dropdown-item" href="http://status.coffee2m3bjsrrqqycx6ghkxrnejl2q6nl7pjw2j4clchjj6uk5zozad.onion/"
>Tor</a
>
</div>
2023-03-09 16:18:31 +00:00
</li>
</ul>
</nav>
<section id="content">
<div class="container">
<h1>Welcome to Private.coffee</h1>
<p>
Private.coffee is a collection of services that respect your privacy.
</p>
<p>Click on a service to go to it.</p>
<div class="row" id="services">
<div class="service col-sm-4">
<h3>Invidious</h3>
<p>Watch YouTube videos without Google tracking you.</p>
<a href="https://invidious.private.coffee/" class="btn btn-primary"
>Go to Invidious</a
>
</div>
<div class="service col-sm-4">
<h3>Nitter</h3>
<p>Use Twitter without Twitter tracking you.</p>
<a href="https://nitter.private.coffee/" class="btn btn-primary"
>Go to Nitter</a
>
</div>
2023-03-12 07:48:42 +00:00
<div class="service col-sm-4">
<h3>Libreddit</h3>
<p>Use Reddit without Reddit tracking you.</p>
<a href="https://libreddit.private.coffee/" class="btn btn-primary"
>Go to Libreddit</a
>
</div>
2023-03-12 07:50:29 +00:00
<div class="service col-sm-4">
<h3>Matrix</h3>
<p>
Private.coffee runs a Matrix server. You can use it to chat with
other people at Private.coffee or around the world.
</p>
<a href="https://element.private.coffee/" class="btn btn-primary"
>Go to Element</a
>
2023-03-12 07:57:43 +00:00
</div>
2023-03-12 07:48:42 +00:00
<div class="service col-sm-4">
<h3>Hosting</h3>
<p>
Need hosting for your privacy-related, social or wholesome
project? We might be able to share our resources with you for
free!
</p>
<a href="mailto:support@private.coffee" class="btn btn-primary"
>Get in touch!</a
>
</div>
<div class="service col-sm-4">
<h3>More?</h3>
<p>
We are working on more services. If you have any suggestions,
please let us know!
</p>
<a href="mailto:support@private.coffee" class="btn btn-primary"
>Get in touch!</a
>
</div>
2023-03-09 16:18:31 +00:00
</div>
</div>
</section>
<footer class="page-footer font-small bg-dark text-white pt-4">
<div class="container-fluid text-center text-md-left">
<div class="row">
<div class="col-md-6 mt-md-0 mt-3">
<h5 class="text-uppercase">Private.coffee</h5>
<p>
Private.coffee is a collection of services that respect your
privacy.
</p>
</div>
<hr class="clearfix w-100 d-md-none pb-3" />
<div class="col-md-3 mb-md-0 mb-3">
<h5 class="text-uppercase">Legalese</h5>
<ul class="list-unstyled">
<li>
<a href="/legal.html">Legal Notice</a>
</li>
<li>
<a href="/privacy.html">Privacy Policy</a>
</li>
<li>
<a href="/terms.html">Terms of Service</a>
</li>
</ul>
</div>
<div class="col-md-3 mb-md-0 mb-3">
<h5 class="text-uppercase">Contact</h5>
<ul class="list-unstyled">
<li><a href="mailto:support@private.coffee">Email</a></li>
<li><a href="matrix:@support:private.coffee">Matrix</a></li>
2023-03-10 13:24:58 +00:00
<li>
<a href="https://kumig.it/privatecoffee/">KumiGit</a> |
<a href="https://github.com/privatecoffee/">GitHub</a>
</li>
2023-03-09 16:18:31 +00:00
</ul>
</div>
</div>
</div>
</footer>
</body>
</html>