-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.html
More file actions
95 lines (80 loc) · 4.35 KB
/
index.html
File metadata and controls
95 lines (80 loc) · 4.35 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
86
87
88
89
90
91
92
93
94
95
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="/logomark.svg" />
<link rel="apple-touch-icon" href="/logomark.svg" />
<!-- Manifest -->
<link rel="manifest" href="/manifest.json" />
<!-- Viewport & Mobile Optimization -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<!-- Theme Color -->
<meta name="theme-color" content="#ffffff" />
<meta name="msapplication-TileColor" content="#ffffff" />
<!-- Meta tags managed by React Helmet -->
<meta name="application-name" content="Mossaique" />
<meta name="description" content="Your design mosaic. A carefully curated collection of 300+ premium design tools, UI libraries, icons, colors, and learning resources for designers and developers." />
<meta name="keywords" content="mossaique, design resources, design tools, ui design, ux design, prototyping, typography, color palettes, design systems, figma plugins, icons, stock photos, curated design" />
<!-- Author & Social -->
<meta name="author" content="selfishprimate" />
<link rel="author" href="https://github.com/selfishprimate" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Mossaique" />
<meta property="og:title" content="Mossaique: Your Design Mosaic" />
<meta property="og:description" content="Your design mosaic. A carefully curated collection of 300+ premium design tools, UI libraries, icons, colors, and learning resources for designers and developers." />
<meta property="og:image" content="https://mossaique.com/og-image-dark.jpg" />
<meta property="og:image:alt" content="Mossaique - Your Design Mosaic" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:url" content="https://mossaique.com" />
<meta property="og:locale" content="en_US" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@selfishprimate" />
<meta name="twitter:creator" content="@selfishprimate" />
<meta name="twitter:title" content="Mossaique: Your Design Mosaic" />
<meta name="twitter:description" content="Your design mosaic. A carefully curated collection of 300+ premium design tools, UI libraries, icons, colors, and learning resources for designers and developers." />
<meta name="twitter:image" content="https://mossaique.com/og-image-dark.jpg" />
<meta name="twitter:image:alt" content="Mossaique - Your Design Mosaic" />
<!-- Geo Tags -->
<meta name="geo.region" content="US" />
<meta name="geo.placename" content="United States" />
<!-- Language -->
<meta http-equiv="content-language" content="en" />
<!-- Google Analytics 4 - Lazy Loaded for Performance -->
<script>
// Lazy load GA after page is fully loaded
window.addEventListener('load', function() {
setTimeout(function() {
var script = document.createElement('script');
script.async = true;
script.src = 'https://www.googletagmanager.com/gtag/js?id=G-HLNZBQKJTP';
document.head.appendChild(script);
script.onload = function() {
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-HLNZBQKJTP');
};
}, 2000); // Load after 2 seconds
});
</script>
<!-- Resource Hints for Performance -->
<!-- Preconnect to critical origins -->
<link rel="preconnect" href="https://avatars.githubusercontent.com" />
<link rel="preconnect" href="https://logo.clearbit.com" crossorigin />
<!-- DNS Prefetch for less critical origins -->
<link rel="dns-prefetch" href="https://www.google-analytics.com" />
<link rel="dns-prefetch" href="https://www.googletagmanager.com" />
<!-- Inter font now self-hosted via @fontsource/inter -->
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>