forked from Premkolte/AnimateHub
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (76 loc) · 3.85 KB
/
Copy pathindex.html
File metadata and controls
85 lines (76 loc) · 3.85 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
<!doctype html>
<html lang="en">
<head>
<!-- Added Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&family=Sora:wght@500;600;700&display=swap" rel="stylesheet">
<meta charset="UTF-8" />
<link rel="icon" type="image/x-icon" href="Favicon.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Enhanced SEO Meta Tags -->
<title>AnimateHub - Open Source Animation UI Library for Developers</title>
<meta name="description" content="Discover 100+ open-source animation components built with React, Tailwind CSS, and pure CSS. Copy, paste, and animate your web projects instantly." />
<meta name="keywords" content="animation library, react components, tailwind css, css animations, open source, ui components, web animations, frontend development, react animations" />
<meta name="author" content="AnimateHub" />
<meta name="robots" content="index, follow" />
<!-- REMOVE this line to allow translation -->
<!-- <meta name="google" content="notranslate" /> -->
<!-- Google Translate -->
<script type="text/javascript">
function googleTranslateElementInit() {
new google.translate.TranslateElement({
pageLanguage: 'en',
includedLanguages: 'hi,en',
layout: google.translate.TranslateElement.InlineLayout.SIMPLE
}, 'google_translate_element');
}
</script>
<script type="text/javascript" src="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>
<!-- Open Graph Meta Tags for Social Sharing -->
<meta property="og:title" content="AnimateHub - Open Source Animation UI Library" />
<meta property="og:description" content="100+ open-source animation components for React & CSS. Zero setup required, production-ready animations." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://animate-hub.vercel.app/" />
<meta property="og:image" content="https://animate-hub.vercel.app/og-image.png" />
<meta property="og:site_name" content="AnimateHub" />
<meta property="og:locale" content="en_US" />
<!-- Twitter Card Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="AnimateHub - Open Source Animation UI Library" />
<meta name="twitter:description" content="100+ open-source animation components for React & CSS. Zero setup required, production-ready animations." />
<meta name="twitter:image" content="https://animate-hub.vercel.app/og-image.png" />
<meta name="twitter:creator" content="@AnimateHub" />
<!-- Additional SEO Meta Tags -->
<meta name="theme-color" content="#3B82F6" />
<link rel="canonical" href="https://animate-hub.vercel.app/" />
<!-- Structured Data for Search Engines -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "AnimateHub",
"description": "Open-source animation UI library with 100+ components built with React, Tailwind CSS, and pure CSS",
"url": "https://animate-hub.vercel.app/",
"applicationCategory": "DeveloperApplication",
"operatingSystem": "Any",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"author": {
"@type": "Organization",
"name": "AnimateHub"
},
"screenshot": "https://animate-hub.vercel.app/og-image.png",
"softwareVersion": "1.0.0"
}
</script>
<link rel="stylesheet" href="index.css">
</head>
<body>
<!-- Google Translate Widget -->
<div id="google_translate_element" style="position:fixed;top:10px;right:10px;z-index:9999;"></div>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>