karlexmarin Claude Opus 4.7 (1M context) commited on
Commit
7bbf792
·
1 Parent(s): a9fb4b6

feat(seo): OpenGraph + Twitter Card meta tags + better title/description

Browse files

When TAF Agent URL is shared on Twitter/LinkedIn/WhatsApp/Discord/Slack,
recipients see a rich preview card with:
- Title: 'TAF Agent — Test ANY Transformer LLM in Your Browser'
- Description: '5 recipes, 5 modes, 4 languages. $0 forever.'
- Site name + theme color

Also expanded SEO meta tags (keywords, author) and theme-color for
mobile browser chrome.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

Files changed (1) hide show
  1. index.html +20 -2
index.html CHANGED
@@ -3,8 +3,26 @@
3
  <head>
4
  <meta charset="UTF-8" />
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
- <title>TAF Agent — Transformer Diagnostic in your Browser</title>
7
- <meta name="description" content="Predict transformer LLM behaviour from config alone. Free, unlimited, runs entirely in your browser." />
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  <link rel="stylesheet" href="style.css" />
9
  <script src="https://cdn.jsdelivr.net/pyodide/v0.26.4/full/pyodide.js"></script>
10
  </head>
 
3
  <head>
4
  <meta charset="UTF-8" />
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <title>TAF Agent — Test ANY Transformer LLM in Your Browser</title>
7
+ <meta name="description" content="Free, auditable diagnostic for transformer LLMs. Predict viability (long-context, KV compression, training budget, hardware) from config alone. Runs entirely in your browser. No server, no auth, no cost." />
8
+ <meta name="keywords" content="transformer, LLM, diagnostic, RoPE, NIAH, KV cache, viability, free, browser, GPU, NeurIPS, TAF" />
9
+ <meta name="author" content="Carles Marin" />
10
+
11
+ <!-- OpenGraph for social sharing (Twitter, LinkedIn, WhatsApp, Discord, etc.) -->
12
+ <meta property="og:type" content="website" />
13
+ <meta property="og:url" content="https://karlesmarin.github.io/tafagent/" />
14
+ <meta property="og:title" content="TAF Agent — Test ANY Transformer LLM in Your Browser" />
15
+ <meta property="og:description" content="Free, auditable transformer LLM diagnostic. 5 recipes, 5 modes, 4 languages. Runs in your browser. No server, no auth, $0/month forever." />
16
+ <meta property="og:site_name" content="TAF Agent" />
17
+
18
+ <!-- Twitter Card -->
19
+ <meta name="twitter:card" content="summary_large_image" />
20
+ <meta name="twitter:title" content="TAF Agent — Test ANY Transformer LLM in Your Browser" />
21
+ <meta name="twitter:description" content="Free, auditable transformer LLM diagnostic. 5 recipes, 5 modes, 4 languages. Runs in your browser. $0 forever." />
22
+
23
+ <!-- Theme color for browser UI -->
24
+ <meta name="theme-color" content="#0a0e14" />
25
+
26
  <link rel="stylesheet" href="style.css" />
27
  <script src="https://cdn.jsdelivr.net/pyodide/v0.26.4/full/pyodide.js"></script>
28
  </head>