-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (40 loc) · 2.82 KB
/
Copy pathindex.html
File metadata and controls
45 lines (40 loc) · 2.82 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
<!doctype html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<!-- Primary Meta Tags -->
<title>MobileSQL — The AI-Powered Mobile SQL IDE & Academy</title>
<meta name="title" content="MobileSQL — The AI-Powered Mobile SQL IDE & Academy" />
<meta name="description" content="Master SQL on the go. Interactive database playgrounds, query execution engine, EXPLAIN plan visualizer, daily challenges, and AI-assisted query optimization." />
<meta name="keywords" content="SQL, Mobile IDE, PostgreSQL, Database Academy, AI Copilot, Query Optimization, EXPLAIN Plan, Learn SQL, Data Engineering" />
<meta name="author" content="MobileSQL Core Team" />
<meta name="theme-color" content="#0D0D0E" />
<!-- Open Graph / Facebook / LinkedIn -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://mobilesql.dev/" />
<meta property="og:title" content="MobileSQL — The AI-Powered Mobile SQL IDE & Academy" />
<meta property="og:description" content="Master SQL on mobile with sub-millisecond execution, interactive ER schemas, gamified tracks, and Gemini-powered query diagnostics." />
<meta property="og:image" content="https://mobilesql.dev/og-banner.png" />
<!-- Twitter / X -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://mobilesql.dev/" />
<meta property="twitter:title" content="MobileSQL — The AI-Powered Mobile SQL IDE & Academy" />
<meta property="twitter:description" content="Master SQL on mobile with sub-millisecond execution, interactive ER schemas, gamified tracks, and Gemini-powered query diagnostics." />
<meta property="twitter:image" content="https://mobilesql.dev/og-banner.png" />
<!-- PWA & Mobile Web Capabilities -->
<link rel="manifest" href="/manifest.json" />
<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="MobileSQL" />
<link rel="apple-touch-icon" href="/icons/icon-192.png" />
<!-- Fonts & Preconnect -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap" rel="stylesheet" />
</head>
<body class="bg-[#0D0D0E] text-[#F3F3F4] antialiased selection:bg-[#62DF7D]/20 selection:text-[#62DF7D] overflow-x-hidden min-h-screen">
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>