-
-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (46 loc) · 1.65 KB
/
index.html
File metadata and controls
47 lines (46 loc) · 1.65 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/svg+xml" href="/emblem-light.svg" />
<link rel="shortcut icon" href="/emblem-light.svg" />
<link rel="apple-touch-icon" href="/emblem-light.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<title>SEO Devtools Example - TanStack Devtools</title>
<meta
name="description"
content="A React example for the TanStack SEO devtools plugin."
/>
<meta property="og:title" content="SEO Devtools Example" />
<meta
property="og:description"
content="Inspect page metadata, headings, links, and structured data."
/>
<meta property="og:url" content="https://example.com/seo" />
<meta
property="og:image"
content="https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=800"
/>
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="SEO Devtools Example" />
<meta
name="twitter:description"
content="Inspect page metadata, headings, links, and structured data."
/>
<link rel="canonical" href="https://example.com/seo" />
</head>
<body>
<script id="seo-json-ld" type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "TanStack Devtools SEO Example",
"url": "https://example.com/seo"
}
</script>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>