-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (50 loc) · 1.23 KB
/
index.html
File metadata and controls
50 lines (50 loc) · 1.23 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>GEngine Demo</title>
<style>
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
background: #0f1116;
color: #e8ecf0;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
margin: 0;
}
.card {
background: #161b22;
border: 1px solid #222733;
border-radius: 10px;
padding: 24px;
max-width: 420px;
box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}
h1 {
margin: 0 0 12px;
font-size: 20px;
}
p { margin: 0 0 12px; line-height: 1.5; }
a {
color: #8ab4ff;
text-decoration: none;
font-weight: 600;
}
a:hover { text-decoration: underline; }
ul { padding-left: 20px; margin: 8px 0; }
</style>
</head>
<body>
<div class="card">
<h1>GEngine Demo</h1>
<p>The GitHub Pages static demo is available at:</p>
<ul>
<li><a href="./demo/">/demo/</a></li>
</ul>
<p>If you reached this page from the repo root, use the link above to load the InkJS demo.</p>
</div>
</body>
</html>