-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (50 loc) · 2.81 KB
/
index.html
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
52
53
54
<!doctype html>
<html lang="en">
<head>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@latest/dist/css/bootstrap.min.css" rel="stylesheet" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@latest/font/bootstrap-icons.css">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="./assets/favicon.ico">
<title>Sgerb</title>
</head>
<body>
<div class="navbar" style="background: #fc950d;">
<span class="navbar-brand ms-2 p-0"><a href="index.html"><img src="./assets/logo.png" width="105" height="38"></a>
<span class="hstack gap-2">
<a href="https://sgerb.pages.dev/" class="btn bg-warning">editor</a>
<a class="btn bg-warning disabled border-0">projects</a>
<a class="btn bg-warning disabled border-0">collections</a>
<a class="btn bg-warning disabled border-0 ms-auto">log in</a>
<a class="btn bg-warning disabled border-0">sign up</a>
</span>
</div>
<br>
<div class="shadow bg-light p-2 rounded m-2" id="about">
<h3>About</h3>
<p>
Sgerb is a Scratch mod implementing feature suggestions rejected from Scratch.
</p>
</div>
<br>
<div class="shadow bg-light p-2 rounded m-2" id="why-sgerb">
<h3>Why Sgerb?</h3>
<h5>Notification Management</h5>
<p>Users are able to disable or enable types of notifications (project likes, collection activity, followers, comments) in a checkbox system.</p>
<h5>Username Changes</h5>
<p>Because Sgerb currently does not have a database system (which is the reason Scratch and its outdated system does not have username changing support), username changes are a fairly simple thing to implement. All old usernames will be stored in a list and if they are repeated, they will be followed by a counter. Example: Sgerber2 (x1)</p>
<h5>Status Icons</h5>
<p>Despite the Scratch Team denying so, Scratch is no longer just a coding website, it’s a social website centered on coding, making status icons necessary. These are essential to any website with social aspects, and as such, Sgerb will have Status Icons.
<h5>Milestones</h5>
<p>Milestones work similarly to achievements, but as its name indicates, they serve as a way to show a user’s milestones. These can be hidden by the user.</p>
</div>
<br>
<div class="shadow bg-light p-2 rounded m-2" id="qna">
<h3>Q&A</h3>
<h5>Is Sgerb better than Scratch?</h5>
<p>In every way</p>
</div>
<script src="./lib/index.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@latest/dist/js/bootstrap.bundle.min.js" crossorigin="anonymous"></script>
</body>
</html>