-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (50 loc) · 2.39 KB
/
index.html
File metadata and controls
55 lines (50 loc) · 2.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Drawd — Visual App Flow Designer</title>
<meta name="description" content="Design mobile app navigation flows visually. Upload screens, define tap areas, connect flows, and generate AI build instructions your LLM can actually use." />
<link rel="canonical" href="https://drawd.app" />
<meta name="theme-color" content="#282c34" />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Drawd" />
<meta property="og:title" content="Drawd — Visual App Flow Designer" />
<meta property="og:description" content="Design mobile app navigation flows visually. Upload screens, define tap areas, connect flows, and generate AI build instructions your LLM can actually use." />
<meta property="og:url" content="https://drawd.app" />
<meta property="og:image" content="https://drawd.app/og-image.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<!-- Twitter / X -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Drawd — Visual App Flow Designer" />
<meta name="twitter:description" content="Design mobile app navigation flows visually. Upload screens, define tap areas, connect flows, and generate AI build instructions your LLM can actually use." />
<meta name="twitter:image" content="https://drawd.app/og-image.png" />
<!-- Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "Drawd",
"url": "https://drawd.app",
"applicationCategory": "DesignApplication",
"operatingSystem": "Web",
"description": "Visual app flow designer that lets you upload screens, define tap areas, connect navigation flows, and generate AI build instructions.",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
}
}
</script>
<link rel="icon" type="image/svg+xml" href="/icon.svg" />
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>