-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (95 loc) · 3.22 KB
/
index.html
File metadata and controls
96 lines (95 loc) · 3.22 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
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
93
94
95
96
<!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/micahlt/itchy-native"
target="_blank"
rel="nofollow"
>GitHub</a
>
<a href="/multiplay">MultiPlay</a>
<a href="/privacy">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-wordmark.svg" alt="Itchy" class="logo" />
<div class="downloads">
<a
href="https://play.google.com/store/apps/details?id=org.scratchclient4.itchy"
target="_blank"
rel="nofollow"
><img src="assets/google_play.svg" />
</a>
<a
href="https://apps.apple.com/us/app/itchy-for-scratch/id6743445859"
target="_blank"
rel="nofollow"
><img src="assets/app_store.svg" />
</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 modern, scalable third-party mobile client for the
<a href="https://scratch.mit.edu/" target="_blank" rel="nofollow"
>Scratch</a
>
social coding platform. It strives to come as close as possible to
feature parity with the real Scratch website, by placing features in a
mobile-friendly native interface. 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
React Native app built with the Expo framework. All code is
open-source and available on
<a
href="https://github.com/micahlt/itchy-native"
target="_blank"
rel="nofollow"
>GitHub</a
>
for community contributions and reuse.
</p>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Detect.js/2.2.2/detect.min.js"></script>
</body>
</html>