forked from ryokun6/ryos
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (54 loc) · 2.09 KB
/
index.html
File metadata and controls
58 lines (54 loc) · 2.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link rel="manifest" href="/manifest.json" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="apple-mobile-web-app-title" content="ryOS" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0, viewport-fit=cover"
/>
<meta
name="description"
content="A web-based agentic AI OS, made with Cursor"
/>
<meta name="theme-color" content="#000000" />
<meta http-equiv="Permissions-Policy" content="camera=(self)" />
<!-- Disable pull-to-refresh and overscroll behaviors on mobile -->
<meta name="format-detection" content="telephone=no" />
<meta name="msapplication-tap-highlight" content="no" />
<!-- Cache control -->
<meta http-equiv="Cache-Control" content="max-age=86400" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://os.ryo.lu/" />
<meta property="og:title" content="ryOS" />
<meta
property="og:description"
content="A web-based OS experience, made with Cursor"
/>
<meta property="og:image" content="https://os.ryo.lu/icons/mac-512.png" />
<meta property="og:site_name" content="ryOS" />
<!-- Twitter Card -->
<meta property="twitter:card" content="summary" />
<meta property="twitter:title" content="ryOS" />
<meta
property="twitter:description"
content="A web-based OS experience, made with Cursor"
/>
<meta
property="twitter:image"
content="https://os.ryo.lu/icons/mac-512.png"
/>
<title>ryOS</title>
</head>
<body style="background-color: black">
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>