-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (54 loc) · 2.31 KB
/
Copy pathindex.html
File metadata and controls
57 lines (54 loc) · 2.31 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
<!doctype html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Per-page title, description, canonical, Open Graph and Twitter tags are
managed by unhead (see App.vue defaults + each view's useHead), so each
prerendered route ships its own. Only site-wide statics live here. -->
<meta name="theme-color" content="#ffffff" media="(prefers-color-scheme: light)" />
<meta name="theme-color" content="#0a0a0a" media="(prefers-color-scheme: dark)" />
<link rel="icon" href="/favicon.svg" type="image/svg+xml" />
<!-- Structured data (site-wide) -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "WebSite",
"@id": "https://verve.jettonn.dev/#website",
"url": "https://verve.jettonn.dev/",
"name": "Verve",
"description": "An open-source library of Vue micro-interaction and motion components.",
"inLanguage": "en",
"publisher": { "@id": "https://verve.jettonn.dev/#author" }
},
{
"@type": "SoftwareApplication",
"@id": "https://verve.jettonn.dev/#app",
"name": "Verve",
"url": "https://verve.jettonn.dev/",
"applicationCategory": "DeveloperApplication",
"operatingSystem": "Any",
"description": "A curated set of Vue micro-interaction and motion components, installable with the Verve CLI or copied straight into your app. Built on motion-v and Tailwind CSS.",
"softwareRequirements": "Vue 3, motion-v",
"codeRepository": "https://github.com/Jettonn/verve",
"license": "https://opensource.org/licenses/MIT",
"author": { "@id": "https://verve.jettonn.dev/#author" },
"offers": { "@type": "Offer", "price": "0", "priceCurrency": "USD" }
},
{
"@type": "Person",
"@id": "https://verve.jettonn.dev/#author",
"name": "Jeton Korenica",
"url": "https://github.com/Jettonn"
}
]
}
</script>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>