jank-client-fork/src/webpage/home.html
2025-04-29 14:48:22 -05:00

84 lines
2.7 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Jank Client</title>
<meta content="Jank Client" property="og:title" />
<meta content="A spacebar client that has DMs, replying and more" property="og:description" />
<meta content="A spacebar client that has DMs, replying and more" name="description" />
<meta content="/logo.webp" property="og:image" />
<meta content="#4b458c" data-react-helmet="true" name="theme-color" />
<link href="/style.css" rel="stylesheet" />
<link href="/themes.css" rel="stylesheet" id="lightcss" />
<style>
body.no-theme {
background: #16191b;
}
@media (prefers-color-scheme: light) {
body.no-theme {
background: #9397bd;
}
}
</style>
</head>
<body class="no-theme" style="overflow-y: scroll">
<div id="titleDiv">
<img src="/logo.svg" width="40" alt="" />
<h1 id="pageTitle">Jank Client</h1>
<a href="/invite/USgYJo?instance=https%3A%2F%2Fspacebar.chat" class="TitleButtons">
Spacebar Guild
</a>
<a href="https://github.com/MathMan05/JankClient" class="TitleButtons"> Github </a>
<a href="/channels/@me" class="TitleButtons" id="openClient"> Open Client </a>
</div>
<div id="homePage">
<h1 class="pagehead" id="welcomeJank">Welcome to Jank Client</h1>
<div class="pagebox">
<p id="box1title">
Jank Client is a Spacebar-compatible client seeking to be as good as it can be with many
features including:
</p>
<ul id="box1Items">
<li>Direct Messaging</li>
<li>Reactions support</li>
<li>Invites</li>
<li>Account switching</li>
<li>User settings</li>
<li>Developer portal</li>
<li>Bot invites</li>
<li>Translation support</li>
</ul>
</div>
<div class="pagebox">
<h2 id="compatableInstances">Spacebar-Compatible Instances:</h2>
<div id="instancebox"></div>
</div>
<div class="pagebox">
<h2 id="box4title">Translate Jank Client</h2>
<p id="box4description">You can help translate Jank Client into your own language!</p>
<br />
<a
href="https://translatewiki.net/wiki/Translating:JankClient"
class="TitleButtons"
id="translate"
>
Translate
</a>
</div>
<div class="pagebox">
<h2 id="box3title">Contribute to Jank Client</h2>
<p id="box3description">
We always appreciate some help, whether that be in the form of bug reports, code, help
translate, or even just pointing out some typos.
</p>
<br />
<a href="https://github.com/MathMan05/JankClient" class="TitleButtons"> Github </a>
</div>
</div>
</body>
<script src="/home.js" type="module"></script>
</html>