-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
108 lines (103 loc) · 3.79 KB
/
index.html
File metadata and controls
108 lines (103 loc) · 3.79 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
96
97
98
99
100
101
102
103
104
105
106
107
108
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<meta name="apple-mobile-web-app-title" content="watermelon ui" />
<link rel="manifest" href="/site.webmanifest" />
<link rel="preconnect" href="https://images.unsplash.com" crossorigin />
<link rel="preconnect" href="https://assets.watermelon.sh" crossorigin />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-S58LTWMLE9"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-S58LTWMLE9', { send_page_view: false });
</script>
<link rel="canonical" href="https://ui.watermelon.sh/" />
<title>Watermelon UI — Premium React Components, Dashboards & Blocks</title>
<meta
name="description"
content="A collection of high-quality React components, dashboards, and UI blocks. Copy and paste production-ready UI with ease."
/>
<meta name="robots" content="index, follow" />
<meta name="theme-color" content="#000000" />
<meta name="author" content="Watermelon UI" />
<meta
name="keywords"
content="react components, ui library, dashboards, blocks, tailwindcss, shadcn, copy paste ui, frontend, design system"
/>
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://ui.watermelon.sh/" />
<meta
property="og:title"
content="Watermelon UI — Premium React Components, Dashboards & Blocks"
/>
<meta
property="og:description"
content="A collection of high-quality React components, dashboards, and UI blocks. Copy and paste production-ready UI with ease."
/>
<meta property="og:image" content="https://ui.watermelon.sh/og-image.png" />
<meta property="og:site_name" content="Watermelon UI" />
<meta property="og:locale" content="en_US" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:title"
content="Watermelon UI — Premium React Components, Dashboards & Blocks"
/>
<meta
name="twitter:description"
content="A collection of high-quality React components, dashboards, and UI blocks. Copy and paste production-ready UI with ease."
/>
<meta
name="twitter:image"
content="https://ui.watermelon.sh/og-image.png"
/>
<!-- Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "Watermelon UI",
"url": "https://ui.watermelon.sh",
"description": "A collection of high-quality React components, dashboards, and UI blocks.",
"potentialAction": {
"@type": "SearchAction",
"target": "https://ui.watermelon.sh/components?q={search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>
</head>
<body>
<h1
style="
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border-width: 0;
"
>
Watermelon UI - High-Quality React Components Registry
</h1>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>