-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (88 loc) · 3.46 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>LuciZ Games</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css"
rel="stylesheet"
/>
</head>
<body class="bg-gray-100">
<header class="bg-blue-500 text-white text-center p-6">
<h1 class="text-3xl font-bold">Welcome to LuciZ Games!</h1>
<p>Discover fun and engaging mobile games designed by our team, LuciZ.</p>
</header>
<main class="p-4">
<div class="flex flex-wrap justify-center gap-4">
<div class="bg-white p-4 rounded-lg shadow-md max-w-sm">
<h2 class="text-xl font-bold mb-2">Air PANG PANG</h2>
<img
src="https://play-lh.googleusercontent.com/VWwKruIe3vwzyP_SXRRhdxlc1TIM3duoz7hvVeHuLlRAqefhOoX_r7NTlbtgIvcbPQRc=w526-h296-rw"
alt="Air PANG PANG Game Image"
class="rounded-lg mb-4"
/>
<p class="mb-4">
Air PANG PANG challenges you to match missile colors to enemy jets
in a high-stakes sky battle. Miss and it's game over. Compete
globally and climb the leaderboard to become the ultimate sky ace!
</p>
<a
href="https://play.google.com/store/apps/details?id=com.luciz.airpangpang2"
class="inline-block bg-blue-500 text-white rounded-full px-4 py-2"
target="_blank"
>Play Air PANG PANG</a
>
</div>
<div class="bg-white p-4 rounded-lg shadow-md max-w-sm">
<h2 class="text-xl font-bold mb-2">TetriCube</h2>
<img
src="https://play-lh.googleusercontent.com/3RdvUoRKR9joFClc9ZKrFEXprjrqmKP5QPpa9fpt3CE4dQss8vAUCaXn86QKSdbHr88=w526-h296-rw"
alt="TetriCube Game Image"
class="rounded-lg mb-4"
/>
<p class="mb-4">
Dive into TetriCube, a 3D puzzle adventure where every line cleared
is a step closer to mastering the cube. Swipe, rotate, and
strategize your way through unique levels. Can you top the
leaderboard?
</p>
<a
href="https://play.google.com/store/apps/details?id=com.LuciZ.TetriCube"
class="inline-block bg-blue-500 text-white rounded-full px-4 py-2"
target="_blank"
>Play TetriCube</a
>
</div>
</div>
<section class="text-center mt-12">
<h2 class="text-2xl font-bold">About LuciZ</h2>
<p class="mt-4">
We're a passionate team dedicated to creating fun and engaging mobile
games. Explore our titles and join our gaming community!
</p>
</section>
<section class="text-center mt-8">
<h2 class="text-2xl font-bold">Contact Us</h2>
<p class="mt-4">
Have questions or feedback? We'd love to hear from you! Contact us at
<a
href="https://github.com/luciz/luciz.github.io/discussions"
class="text-blue-400 hover:text-blue-300"
>https://github.com/luciz/luciz.github.io/discussions</a
>
.
</p>
</section>
</main>
<footer class="bg-gray-800 text-white text-center p-4">
<p>
© 2024 LuciZ Games. All rights reserved. |
<a href="privacy-policy.html" class="text-blue-400 hover:text-blue-300"
>Privacy Policy</a
>
</p>
</footer>
</body>
</html>