-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (71 loc) · 3.27 KB
/
index.html
File metadata and controls
76 lines (71 loc) · 3.27 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
<link rel="manifest" href="site.webmanifest" />
<meta name="msapplication-TileColor" content="#0E0E10" />
<meta name="theme-color" content="#18181B" />
<meta name="robots" content="index, follow" />
<link rel="canonical" href="https://yzua.github.io/sqlite-online/" />
<title>SQLite Online</title>
<!-- Favicon and icons -->
<link rel="icon" href="./icons/favicon.ico" type="image/x-icon" />
<link rel="apple-touch-icon" sizes="180x180" href="./icons/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="./icons/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="./icons/favicon-16x16.png" />
<link rel="icon" type="image/png" sizes="192x192" href="./icons/android-chrome-192x192.png" />
<link rel="icon" type="image/png" sizes="512x512" href="./icons/android-chrome-512x512.png" />
<!-- Meta Data -->
<meta name="description"
content="Lightweight, secure, and WebAssembly-powered SQLite viewer and editor—works entirely in your browser." />
<meta name="keywords"
content="SQLite Viewer, SQLite Editor, WebAssembly SQLite, In-Browser SQLite, Client-Side SQLite, Secure SQLite Editor, Lightweight SQLite Tool, SQL.js, React, Offline SQLite Editor, Browser-Based Database Tool, Fast SQLite Editor, WASM-Powered SQLite, SQLite Management" />
<meta property="og:title" content="SQLite Viewer" />
<meta property="og:site_name" content="SQLite Viewer" />
<meta property="og:locale" content="en_US" />
<meta property="og:description"
content="Lightweight, secure, and WebAssembly-powered SQLite viewer and editor—works entirely in your browser." />
<meta property="og:image" content="https://yzua.github.io/sqlite-online/preview.png" />
<meta property="og:url" content="https://yzua.github.io/sqlite-online/" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="SQLite Viewer" />
<meta name="twitter:description"
content="Lightweight, secure, and WebAssembly-powered SQLite viewer and editor—works entirely in your browser." />
<meta name="twitter:image" content="https://yzua.github.io/sqlite-online/preview.png" />
<meta name="author" content="yzua" />
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap" />
<!-- Critical CSS -->
<style>
body {
font-family: "Lexend", sans-serif;
font-display: swap;
}
.no-js {
text-align: center;
margin-top: 20%;
}
.no-js h1 {
font-size: 2rem;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx" defer></script>
<noscript>
<div class="no-js">
<h1>JavaScript Required</h1>
<p>
We're sorry, but this application requires JavaScript to function
correctly. Please enable JavaScript in your browser and reload the
page.
</p>
</div>
</noscript>
</body>
</html>