-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
104 lines (92 loc) · 3.39 KB
/
index.html
File metadata and controls
104 lines (92 loc) · 3.39 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
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Home - Rarry</title>
<meta name="google-site-verification" content="OT5ycCTdL47u2TMrA5WeNJ7a21uZSTKZWt9VY_FE27k" />
<link href="src/index.css" rel="stylesheet" />
<link href="src/home.css" rel="stylesheet" />
<meta name="author" content="ddededodediamante" />
<meta name="description" content="Create and share games using visual block-coding, powered by Blockly." />
<meta name="keywords" content="Rarry, block coding, Scratch, visual programming, game maker, online coding" />
<meta name="theme-color" content="#3b82f6" />
<meta property="og:title" content="Rarry" />
<meta property="og:image" content="icons/Rarry.svg" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Rarry" />
<meta name="twitter:description" content="Create and share games using visual block-coding, powered by Blockly." />
<meta name="twitter:image" content="icons/Rarry.svg" />
</head>
<body>
<header>
<div>
<img src="icons/Rarry.svg" alt="Rarry logo" class="logo">
<img src="icons/R-Rarry.svg" alt="Rarry logo" class="logo small">
<button onclick="location.href='/editor'">
<i class="fa-solid fa-code"></i>
Editor
</button>
<button id="settings-button">
<i class="fa-solid fa-gear"></i>
Settings
</button>
</div>
<div>
<button onclick="location.href='/login'" id="login-button">
<i class="fa-solid fa-right-to-bracket"></i>
Login
</button>
</div>
</header>
<section class="about">
<h2>What is Rarry?</h2>
<p>
Rarry is a web-based platform that allows to create games or projects
using visual block-coding, powered by Blockly.
</p>
<h2>Features</h2>
<div class="feature-cards">
<div class="feature-card">
<h3>Visual Block Editor</h3>
<p>Write code by snapping blocks together, no typing required.</p>
<img src="/icons/home/visual_block_editor_icon.png" style="transform: rotate(-5deg);">
</div>
<div class="feature-card">
<h3>Custom Extensions</h3>
<p>
Extend your projects with custom blocks, new categories, and
powerful features.
</p>
<img src="/icons/home/extensions_icon.png" style="transform: rotate(5deg);">
</div>
<div class="feature-card">
<h3>Themes</h3>
<p>Switch between light and dark modes to match your style.</p>
<img src="/icons/home/themes_icon.svg">
</div>
</div>
</section>
<section class="editor-preview">
<h2>Build projects visually</h2>
<p>
Snap blocks together, press run, and watch your project come to life! All in your browser.
</p>
<div class="editor-mockup">
<img src="/icons/home/example_project.jpg" alt="Rarry editor preview">
</div>
</section>
<footer>
<p>
© 2026 Rarry. Made with ❤️ by
<a href="https://github.com/ddededodediamante">ddededodediamante</a>.
</p>
</footer>
<script>
// redirect to editor if running in tauri
if (window.__TAURI_INTERNALS__ !== undefined) window.location.replace("/editor");
</script>
<script type="module" src="src/scripts/index.js"></script>
</body>
</html>