-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (41 loc) · 2.34 KB
/
index.html
File metadata and controls
47 lines (41 loc) · 2.34 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Boxy - Your Offline Clipboard Manager</title>
<!-- SEO Meta Tags -->
<meta name="description" content="Boxy is a powerful, offline-first clipboard manager for organizing text snippets, code templates, and canned responses." />
<meta name="keywords" content="clipboard manager, offline, snippets, templates, markdown, productivity" />
<meta name="author" content="Boxy Team" />
<!-- PWA Meta Tags -->
<meta name="theme-color" content="#0f172a" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-mobile-web-app-title" content="Boxy" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="application-name" content="Boxy" />
<meta name="msapplication-TileColor" content="#0f172a" />
<meta name="msapplication-config" content="/browserconfig.xml" />
<!-- Favicons -->
<link rel="icon" type="image/svg+xml" href="/logo.svg" />
<link rel="icon" type="image/png" sizes="32x32" href="/icons/icon-32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/icons/icon-16.png" />
<link rel="apple-touch-icon" sizes="180x180" href="/icons/apple-touch-icon.png" />
<link rel="mask-icon" href="/logo.svg" color="#069BDE" />
<!-- PWA Manifest -->
<link rel="manifest" href="/manifest.json" />
<!-- Open Graph / Social -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Boxy - Your Offline Clipboard Manager" />
<meta property="og:description" content="A powerful, offline-first clipboard manager for organizing text snippets, code templates, and canned responses." />
<meta property="og:image" content="/icons/og-image.png" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Boxy - Your Offline Clipboard Manager" />
<meta name="twitter:description" content="A powerful, offline-first clipboard manager for organizing text snippets, code templates, and canned responses." />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>