forked from DiwasKhatri07/KnightSense-Chess-Engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwelcome.html
More file actions
51 lines (43 loc) · 2.17 KB
/
Copy pathwelcome.html
File metadata and controls
51 lines (43 loc) · 2.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>KnightSense — Welcome</title>
<link rel="stylesheet" href="welcome.css">
</head>
<body>
<div class="bg"></div>
<div class="orb orb-1"></div>
<div class="orb orb-2"></div>
<main class="card">
<div class="logo-wrap">
<img class="logo" src="icons/icon128.png" alt="KnightSense logo">
</div>
<h1 class="title"><span class="grad">Knight</span>Sense</h1>
<p class="tagline">Realtime Stockfish chess analysis, rebuilt modern.</p>
<div class="divider"></div>
<section class="legal">
<h2>Welcome & Terms of Use</h2>
<p>Thank you for installing <strong>KnightSense</strong>. By using this extension you agree to the following:</p>
<ul>
<li><strong>Personal use.</strong> KnightSense is a free, open personal tool for improving your chess. It does not collect, store, or transmit any personal data.</li>
<li><strong>Fair play.</strong> Use engine assistance only where the platform you are on allows it. You are responsible for respecting Chess.com's and other platforms' rules and fair-play policies.</li>
<li><strong>No warranty.</strong> This software is provided "as is", without warranty of any kind. The author is not liable for any misuse or for any restrictions applied to your account by a third-party platform.</li>
<li><strong>Attribution.</strong> KnightSense includes the <em>Stockfish</em> open-source chess engine (GPL-3.0). Third-party libraries remain the property of their respective owners.</li>
</ul>
</div>
<div class="divider"></div>
<div class="madeby">
<p class="made-label">Crafted with <span class="heart">♥</span> by</p>
<p class="made-name">Diwas Khatri</p>
<p class="made-sub">Developer · Designer · Chess enthusiast</p>
<a class="btn" href="https://github.com/diwaskhatri07" target="_blank" rel="noopener">
<span class="gh-icon">⌥</span> GitHub @diwaskhatri07
</a>
</div>
<div class="version">v2.3.0 · KnightSense</div>
</main>
<script src="welcome.js"></script>
</body>
</html>