-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (30 loc) · 1.51 KB
/
Copy pathindex.html
File metadata and controls
33 lines (30 loc) · 1.51 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ThothBlueprint</title>
<link rel="icon" type="image/svg+xml" href="/ThothBlueprint-icon.svg" />
<meta name="description" content="Visualize your database schema with our intuitive drag-and-drop editor." />
<meta name="theme-color" content="#ffffff" media="(prefers-color-scheme: light)">
<meta name="theme-color" content="#141414" media="(prefers-color-scheme: dark)">
<!-- PWA Meta Tags -->
<meta name="application-name" content="ThothBlueprint" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<meta name="apple-mobile-web-app-title" content="ThothBlueprint" />
<meta name="format-detection" content="telephone=no" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="msapplication-config" content="/browserconfig.xml" />
<meta name="msapplication-TileColor" content="#ffffff" />
<meta name="msapplication-tap-highlight" content="no" />
<!-- Apple Touch Icons -->
<link rel="apple-touch-icon" href="/ThothBlueprint-icon.svg" />
<link rel="apple-touch-icon" sizes="192x192" href="/ThothBlueprint-icon.svg" />
<link rel="apple-touch-icon" sizes="512x512" href="/ThothBlueprint-icon.svg" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>