-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (39 loc) · 2.08 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<meta name="apple-mobile-web-app-title" content="Quotes Generator" />
<meta name="application-name" content="Quotes Generator" />
<meta name="author" content="Danial Raza" />
<meta name="category" content="Entertainment" />
<meta name="color-scheme" content="light" />
<meta name="creator" content="Danial Raza" />
<meta name="description" content="A quotes generator web app created by Danial Raza." />
<meta name="keywords" content="Quotes,Generator,Quotes Generator,sdanialraza,Danial,Raza" />
<meta name="msapplication-TileColor" content="#27374b" />
<meta name="theme-color" content="#27374b" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:description" content="A quotes generator web app created by Danial Raza." />
<meta name="twitter:title" content="Quotes Generator" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:description" content="A quotes generator web app created by Danial Raza." />
<meta property="og:site_name" content="Quotes Generator" />
<meta property="og:title" content="Quotes Generator" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://quotes.sdanialraza.dev" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link rel="author" href="https://github.com/sdanialraza" />
<link rel="icon" href="/favicon-16x16.png" sizes="16x16" type="image/png" />
<link rel="icon" href="/favicon-32x32.png" sizes="32x32" type="image/png" />
<link rel="icon" href="/favicon.ico" type="image/ico" />
<link rel="manifest" href="/site.manifest" />
<link rel="mask-icon" href="/safari-pinned-tab.svg" />
<title>Quotes Generator</title>
</head>
<body>
<div class="text-white antialiased" id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>