Skip to content

Commit 76ffd6b

Browse files
brannnclaude
andcommitted
Add SEO and Google Analytics to overview page
- Add comprehensive meta description and keywords - Add Open Graph tags for social media sharing - Add Twitter Card metadata - Add canonical URL - Include Google Analytics tracking (G-500FW8GVFN) - Improve page title for search discoverability Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 1efcd16 commit 76ffd6b

1 file changed

Lines changed: 26 additions & 2 deletions

File tree

web/cmd/server/static/overview.html

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,32 @@
33
<head>
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6-
<title>Simplex in 5 Minutes - Quick Overview</title>
7-
<meta name="description" content="A quick 5-minute interactive overview of Simplex - the specification language for autonomous agents.">
6+
<title>Simplex in 5 Minutes - Interactive Guide to Specification Language for AI Agents</title>
7+
<meta name="description" content="Learn Simplex in 5 minutes: an interactive guide to the specification language for autonomous AI agents. Discover landmarks, design pillars, and how to write specs for LLM-driven development.">
8+
<meta name="keywords" content="Simplex specification, AI agent specification, LLM specification language, autonomous agents, agentic coding, specification format, AI development, agent workflows, interactive tutorial">
9+
<link rel="canonical" href="https://simplex-spec.org/overview">
10+
11+
<!-- Open Graph / Social Media -->
12+
<meta property="og:type" content="website">
13+
<meta property="og:title" content="Simplex in 5 Minutes - Interactive Guide">
14+
<meta property="og:description" content="Learn Simplex in 5 minutes: an interactive guide to the specification language for autonomous AI agents.">
15+
<meta property="og:url" content="https://simplex-spec.org/overview">
16+
<meta property="og:site_name" content="Simplex">
17+
18+
<!-- Twitter Card -->
19+
<meta name="twitter:card" content="summary_large_image">
20+
<meta name="twitter:title" content="Simplex in 5 Minutes - Interactive Guide">
21+
<meta name="twitter:description" content="Learn Simplex in 5 minutes: an interactive guide to the specification language for autonomous AI agents.">
22+
23+
<!-- Google Analytics -->
24+
<script async src="https://www.googletagmanager.com/gtag/js?id=G-500FW8GVFN"></script>
25+
<script>
26+
window.dataLayer = window.dataLayer || [];
27+
function gtag(){dataLayer.push(arguments);}
28+
gtag('js', new Date());
29+
gtag('config', 'G-500FW8GVFN');
30+
</script>
31+
832
<link rel="preconnect" href="https://fonts.googleapis.com">
933
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
1034
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700&family=JetBrains+Mono:wght@300;400;600&display=swap" rel="stylesheet">

0 commit comments

Comments
 (0)