-
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.66 KB
/
index.html
File metadata and controls
45 lines (40 loc) · 2.66 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">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
<title>ThumbCode - Code with your thumbs</title>
<meta name="description" content="A decentralized multi-agent mobile development platform. Full git workflow, AI-powered agents, from your phone.">
<!-- Open Graph -->
<meta property="og:title" content="ThumbCode - Code with your thumbs">
<meta property="og:description" content="A decentralized multi-agent mobile development platform. Direct AI agents to build, commit, and deploy — from your phone.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://thumbcode.dev">
<meta property="og:image" content="https://thumbcode.dev/og-image.png">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="ThumbCode - Code with your thumbs">
<meta name="twitter:description" content="Direct AI agents to build, commit, and deploy — from your phone.">
<!-- Favicon & Icons -->
<link rel="icon" type="image/svg+xml" href="/assets/icons/app/favicon.svg">
<link rel="apple-touch-icon" href="/assets/icons/app/ThumbCode_AppIcon_1024.svg">
<!-- PWA -->
<link rel="manifest" href="/manifest.webmanifest">
<meta name="theme-color" content="#FF7059" media="(prefers-color-scheme: light)">
<meta name="theme-color" content="#151820" media="(prefers-color-scheme: dark)">
<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="ThumbCode">
<!-- Security Headers (X-Frame-Options is HTTP-header-only, not valid as meta) -->
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self' 'unsafe-inline'; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com; img-src 'self' data:; connect-src 'self' https://api.github.com https://github.com https://api.anthropic.com https://api.openai.com;">
<meta http-equiv="X-Content-Type-Options" content="nosniff">
<meta name="referrer" content="no-referrer">
<!-- Fonts -->
<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=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400&family=Cabin:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap" rel="stylesheet">
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>