-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
47 lines (44 loc) · 2.62 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
<!DOCTYPE html>
<html lang="en" dir="ltr" id="html">
<head>
<title>Itchy - the Scratch mobile app</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.micahlindley.com/blurbs/reset.css">
<link rel="stylesheet" href="css/landing.css">
<link rel="stylesheet" href="css/navbar.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons+Round" rel="stylesheet">
</head>
<body id="body" onload="document.body.style.opacity='1'">
<div id="navbar">
<nav>
<a onclick="document.getElementById('header').scrollIntoView(true);">Home</a>
<a onclick="document.getElementById('about').scrollIntoView(true);">About</a>
<a href="https://github.com/Scratch-Client-4/itchy-ionic/releases" target="_blank" rel="nofollow">Releases</a>
<a href="/privacy.html">Privacy</a>
</nav>
</div>
<div class="header" id="header">
<div class="header-container">
<div>
<img src="assets/itchy-mockup.png" alt="mockup" class="mockup">
</div>
<div>
<img src="assets/itchy-white-transparent.png" alt="Scratch Client 4" class="logo">
<div class="downloads">
<a href="https://play.google.com/store/apps/details?id=org.scratchclient4.itchy" rel="nofollow"><img src="assets/gplay.svg">Google Play</a>
<a href="https://github.com/Scratch-Client-4/itchy-ionic" target="_blank" rel="nofollow"><img src="assets/ghub.svg">Github</a>
</div>
</div>
</div>
<a onclick="document.getElementById('about').scrollIntoView(true);" id="downButton"><span class="material-icons-round go-down">keyboard_arrow_down</span></a>
</div>
<div class="about" id="about">
<div class="about-container">
<h1>About Itchy</h1>
<p>Itchy is a project of the Scratch Client 4 team. Scratch Client 4 is an effort to build modern, scalable third-party clients for the <a href="https://scratch.mit.edu/" target="_blank" rel="nofollow">Scratch</a> social coding platform. All SC4 projects are open-source and community run from our public <a href="https://github.com/Scratch-Client-4/" target="_blank" rel="nofollow">GitHub organization</a>. We strive for transparency and simplicity in how we process data, and you can read our Privacy Policy <a href="/privacy.html">here</a>. On the technical side, Itchy is a hybrid-native app built with the Ionic Vue framework. We utilize Capacitor for bunding the app and integrating native functionality like URL catching and vibration.</p>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Detect.js/2.2.2/detect.min.js"></script>
</body>
</html>