-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (58 loc) · 3.33 KB
/
Copy pathindex.html
File metadata and controls
68 lines (58 loc) · 3.33 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
<!doctype html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<!-- Preconectar para recursos críticos -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://kanjiapi.dev">
<!-- Favicons con rutas relativas para desarrollo y absolutas para producción -->
<link rel="icon" type="image/svg+xml" href="/kanji-icon.svg" />
<link rel="icon" type="image/svg+xml" sizes="32x32" href="/favicon-32.svg" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.svg" />
<!-- SEO Meta Tags -->
<title>Aprende Kanji - Domina los caracteres japoneses de forma interactiva</title>
<meta name="description" content="Aprende y practica kanji japonés organizado por niveles JLPT, con validación interactiva, lecturas On/Kun y teclado japonés integrado." />
<meta name="keywords" content="kanji, japonés, JLPT, N5, N4, N3, N2, N1, aprender japonés, hiragana, katakana, lecturas On, lecturas Kun" />
<meta name="author" content="Santiago Rodríguez" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://aprende-kanji.netlify.app/" />
<meta property="og:title" content="Aprende Kanji - Domina los caracteres japoneses" />
<meta property="og:description" content="Aplicación interactiva para aprender y practicar kanji japonés por niveles JLPT con retroalimentación inmediata." />
<meta property="og:image" content="https://aprende-kanji.netlify.app/kanji-icon.svg" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:url" content="https://aprende-kanji.netlify.app/" />
<meta name="twitter:title" content="Aprende Kanji - Domina los caracteres japoneses" />
<meta name="twitter:description" content="Aplicación interactiva para aprender y practicar kanji japonés por niveles JLPT con retroalimentación inmediata." />
<meta name="twitter:image" content="https://aprende-kanji.netlify.app/kanji-icon.svg" />
<!-- Mobile Meta -->
<meta name="theme-color" content="#4CAF50">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.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" />
<!-- Canonical URL -->
<link rel="canonical" href="https://aprende-kanji.netlify.app/" />
<!-- Google Analytics 4 (GA4) -->
<script async defer src="https://www.googletagmanager.com/gtag/js?id=G-JLNQK0KYKC"></script>
<script>
// Respect user's Do Not Track setting
const dnt = navigator.doNotTrack || window.doNotTrack || navigator.msDoNotTrack;
const doNotTrack = (dnt == "1" || dnt == "yes");
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-JLNQK0KYKC', {
'anonymize_ip': true,
'send_page_view': !doNotTrack
});
</script>
<link rel="stylesheet" href="/src/style.css" />
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
<script src="/favicon-refresh.js"></script>
</body>
</html>