-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (89 loc) · 4.75 KB
/
index.html
File metadata and controls
99 lines (89 loc) · 4.75 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>DevFlow | One context. Every agent. Every developer.</title>
<meta name="description" content="DevFlow is the AI-native desktop workspace that keeps Claude Code, Codex, and Gemini working from the same knowledge — your tasks, your decisions, your codebase memory." />
<meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1" />
<link rel="canonical" href="https://devflowcode.com/" />
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="https://assets.craigcallen.com/media/devflowcode/favicon-primary.svg" />
<link rel="icon" type="image/svg+xml" href="https://assets.craigcallen.com/media/devflowcode/favicon-primary.svg" media="(prefers-color-scheme: light)" />
<link rel="icon" type="image/svg+xml" href="https://assets.craigcallen.com/media/devflowcode/favicon-primary-inverse.svg" media="(prefers-color-scheme: dark)" />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://devflowcode.com/" />
<meta property="og:title" content="DevFlow | One context. Every agent. Every developer." />
<meta property="og:description" content="The AI-native desktop workspace that keeps Claude Code, Codex, and Gemini working from the same knowledge — your tasks, your decisions, your codebase memory." />
<meta property="og:image" content="https://assets.craigcallen.com/media/devflowcode/og-image.png" />
<meta property="og:site_name" content="DevFlow" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:url" content="https://devflowcode.com/" />
<meta name="twitter:title" content="DevFlow | One context. Every agent. Every developer." />
<meta name="twitter:description" content="The AI-native desktop workspace that keeps Claude Code, Codex, and Gemini working from the same knowledge — your tasks, your decisions, your codebase memory." />
<meta name="twitter:image" content="https://assets.craigcallen.com/media/devflowcode/og-image.png" />
<!-- Theme -->
<meta name="theme-color" content="#f5f8fc" media="(prefers-color-scheme: light)" />
<meta name="theme-color" content="#051830" 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="DevFlow" />
<!-- Structured Data: SoftwareApplication -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "DevFlow",
"description": "The AI-native desktop workspace that keeps Claude Code, Codex, and Gemini working from the same knowledge — your tasks, your decisions, your codebase memory.",
"url": "https://devflowcode.com",
"image": "https://assets.craigcallen.com/media/devflowcode/og-image.png",
"applicationCategory": "DeveloperApplication",
"operatingSystem": "macOS",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD",
"name": "Free Beta"
},
"author": {
"@type": "Organization",
"name": "Allen Media"
}
}
</script>
<!-- Structured Data: Organization -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "DevFlow",
"url": "https://devflowcode.com",
"logo": "https://assets.craigcallen.com/media/devflowcode/primary-logo-inverse.svg",
"parentOrganization": {
"@type": "Organization",
"name": "Allen Media"
}
}
</script>
<!-- Google Analytics (uncomment and replace GA_MEASUREMENT_ID when ready)
<script async src="https://www.googletagmanager.com/gtag/js?id=GA_MEASUREMENT_ID"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'GA_MEASUREMENT_ID');
</script>
-->
<!-- Performance -->
<link rel="dns-prefetch" href="https://assets.craigcallen.com" />
<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=Sora:wght@400;500;600;700&family=DM+Sans:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>