-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
92 lines (92 loc) · 3.62 KB
/
about.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<title>gnaw | About</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<meta charset="UTF-8">
<meta name="background-color" content="#010409">
<meta name="theme-color" content="#0d1117">
<link rel="icon" sizes="512x512" href="images/icon.png">
<link rel="icon" sizes="64x64" href="images/icon64.png">
<link rel="manifest" href="manifest.webmanifest">
<link rel="stylesheet" href="styles.css">
<script src="theme.js"></script>
<style>
p {
margin: 2px;
}
</style>
</head>
<body>
<div class="nav">
<div class="inner-nav">
<div class="nav-item">
<a class="icon desktop" href="index.html">gnaw</a>
<a class="icon mobile" href="index.html">g</a>
</div>
<div class="nav-item desktop" style="justify-content: right;">
<a class="icon desktop nvl" href="explore.html">Explore</a>
<a class="icon desktop nvl" href="featured.html">Featured</a>
</div>
</div>
</div>
<div class="page">
<div class="header">
<h1>About</h1>
</div>
<div class="header">
<h2>About the Website</h2>
</div>
<div class="read">
<p>gnaw is a Scratch browser/client thingy I guess, I'm not really sure what it is</p>
<p>The goal of this was to make the Scratch website (not the editor [yet]) more mobile friendly and aesthetically pleasing</p>
</div>
<div class="header">
<h2>Credits</h2>
</div>
<div class="read">
<p><a href="https://nitter.net">Nitter</a> is what inspired this project.</p>
<p>Fetches from the <a href="https://api.scratch.mit.edu">Scratch API</a></p>
<p><a href="https://corsproxy.io">Corsproxy</a> for the CORS bypass (will use my own server eventually)</p>
<p><a href="https://turbowarp.org">Turbowarp</a> for the project player</p>
</div>
<div class="header">
<h2>About the Creator</h2>
</div>
<div class="read">
<p>Hai :3</p>
<p>I'm Eris and I do various things</p>
<p>I don't have much to put here at the moment</p>
<p>Feel free to email or dm me all the links and things in the footer</p>
<p>Thanks for looking around!</p>
</div>
<div class="read">
<p>Uh enjoy this car i guess</p>
<br>
<img src="images/car.jpg" alt="car" width="300px">
</div>
<div class="read about-mobile">
<a href="https://discord.com/users/797570703419244594">discord</a><a href="mailto:[email protected]">email me</a><a href="profile.html?username=3r1s_s">profile</a><a href="https://github.com/3r1s-s">github</a><a href="health.html">health</a><a href="about.html">about</a><a href="settings.html">settings</a>
</div>
<div class="about">
<div id="about">
<a href="index.html" style="font-weight: bold; ">gnaw</a> / <a href="https://discord.com/users/797570703419244594">discord</a> / <a href="mailto:[email protected]">email me</a> / <a href="profile.html?username=3r1s_s">profile</a> / <a href="https://github.com/3r1s-s">github</a> / <a href="health.html">health</a> / <a href="about.html">about</a> / <a href="settings.html">settings</a> /
</div>
</div>
<div class="mobile-nav">
<div class="mobile-nav-item">
<a href="index.html"><i class="material-symbols-outlined">home</i></a>
</div>
<div class="mobile-nav-item">
<a href="featured.html"><i class="material-symbols-outlined">star</i></a>
</div>
<div class="mobile-nav-item">
<a href="explore.html"><i class="material-symbols-outlined">globe</i></a>
</div>
<div class="mobile-nav-item">
<a href="settings.html"><i class="material-symbols-outlined">settings</i></a>
</div>
</div>
</div>
</body>
</html>