-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (61 loc) · 3.2 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
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Aprende Japonés con HiraKata - Hiragana, Katakana y Kanji</title>
<link rel="stylesheet" href="./styles.css">
</head>
<body class="bg-gray-100 text-gray-800">
<header class="bg-red-500 shadow-lg">
<div class="flex justify-center pt-8">
<a href="https://codecruz.github.io/hirakata/"><img class="h-20" alt="Logo Hirakata"
src="./hirakata-nobg.png"></a>
</div>
<div class="text-center pb-6">
<p class="mt-2 text-lg text-white">Domina los silabarios Hiragana y Katakana, y prepárate para los Kanji.
</p>
</div>
<nav class="bg-red-600 py-3 shadow-md">
<div class="container mx-auto flex justify-center space-x-8">
<a href="./hiragana/"
class="text-white hover:text-gray-200 transition-colors text-lg font-semibold border-b-2 border-transparent hover:border-white">
Hiragana
</a>
<a href="./katakana/"
class="text-white hover:text-gray-200 transition-colors text-lg font-semibold border-b-2 border-transparent hover:border-white">
Katakana
</a>
</div>
</nav>
</header>
<section class="py-12 px-4">
<h2 class="text-3xl font-bold text-center mb-8">¿Qué ofrece nuestra aplicación?</h2>
<div class="flex flex-wrap justify-center gap-6">
<div class="bg-white rounded-lg shadow-lg p-6 w-80 transition-transform transform hover:-translate-y-2">
<h3 class="text-2xl font-semibold mb-4">Hiragana</h3>
<p class="text-gray-600">Aprende y practica todos los caracteres Hiragana, incluyendo dakuten,
handakuten
y combinaciones.</p>
</div>
<div class="bg-white rounded-lg shadow-lg p-6 w-80 transition-transform transform hover:-translate-y-2">
<h3 class="text-2xl font-semibold mb-4">Katakana</h3>
<p class="text-gray-600">Domina el silabario Katakana con ejercicios interactivos y cuestionarios.</p>
</div>
<div class="bg-white rounded-lg shadow-lg p-6 w-80 transition-transform transform hover:-translate-y-2">
<h3 class="text-2xl font-semibold mb-4">Kanji (próximamente)</h3>
<p class="text-gray-600">Prepárate para aprender Kanji con métodos efectivos y progresivos.</p>
</div>
</div>
</section>
<section class="py-12 px-4 text-center">
<h2 class="text-3xl font-bold mb-6">¡Comienza tu viaje ahora!</h2>
<button class="bg-red-500 text-white px-8 py-3 rounded-lg text-lg hover:bg-red-600 transition-colors"
onclick="alert('¡Próximamente disponible!')">Empieza a Aprender</button>
</section>
<footer class="bg-gray-800 text-white py-6 text-center">
<p>© 2025 HiraKata. Desarrollado con ❤️ por <a href="https://github.com/codecruz/" target="_blank"
class="text-red-400 hover:underline">codecruz</a>.</p>
</footer>
</body>
</html>