-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 1.59 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>QR Generator</title>
<link rel="manifest" href="/manifest.json" />
<link rel="canonical" href="https://generatecodeqr.netlify.app/" />
<script type="module" src="/src/main.jsx"></script>
<meta name="application-name" content="QR Generator" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:creator" content="@jevmydev" />
<meta name="twitter:domain" content="generatecodeqr.netlify.app" />
<meta name="twitter:image" content="/favicon.ico" />
<meta name="twitter:site" content="@jevmydev" />
<meta name="twitter:title" content="QR Generator" />
<meta name="author" content="Jeremy Díaz" />
<meta name="description" content="Genera un código QR con una frase, URL o palabra." />
<meta property="og:locale" content="es_ES" />
<meta property="og:title" content="QR Generator" />
<meta property="og:image" content="/favicon.ico" />
<meta property="og:description" content="Genera un código QR con una frase, URL o palabra." />
<meta property="og:url" content="https://generatecodeqr.netlify.app/" />
<meta property="og:site_name" content="https://generatecodeqr.netlify.app/" />
<meta property="og:type" content="website" />
</head>
<body class="font-sans font-medium text-base min-h-screen bg-gray-200 text-gray-900">
<div id="root"></div>
</body>
</html>