-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
index.html
44 lines (44 loc) · 1.76 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en" data-theme="cupcake" class="bg-base-200">
<head>
<meta charset="UTF-8" />
<title>OneClick | Less clicking, more creating</title>
<link rel="icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" sizes="180x180" />
<link rel="mask-icon" href="/logo.svg" color="#FFFFFF" />
<meta name="theme-color" content="#ffffff" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta property="title" content="OneClick" />
<meta
name="description"
content="Navigate to your favorite actions on the websites you love with just one click"
/>
<meta itemprop="name" content="OneClick" />
<meta
itemprop="description"
content="Navigate to your favorite actions on the websites you love with just one click"
/>
<meta itemprop="image" content="/home.png" />
<meta property="og:title" content="OneClick" />
<meta property="og:url" content="https://oneclickweb.netlify.app" />
<meta property="og:type" content="website" />
<meta
property="og:description"
content="Navigate to your favorite actions on the websites you love with just one click"
/>
<meta property="og:image" content="/home.png" />
<meta property="og:image:secure_url" content="/home.png" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="OneClick" />
<meta
name="twitter:description"
content="Navigate to your favorite actions on the websites you love with just one click"
/>
<meta name="twitter:image" content="/home.png" />
<%- injectStyle %>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>