-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
278 lines (264 loc) · 8.71 KB
/
about.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Social networks meta -->
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:image"
content="https://gavilya.leocorporation.dev/img/social.png"
/>
<meta
name="twitter:description"
content="Gavilya is a simple game launcher for Windows."
/>
<meta name="twitter:title" content="About | Gavilya" />
<!-- Facebook/Linkedin -->
<meta
property="og:description"
content="Gavilya is a simple game launcher for Windows."
/>
<meta
property="og:image"
content="https://gavilya.leocorporation.dev/img/social.png"
/>
<meta property="og:title" content="About | Gavilya" />
<meta
name="description"
content="Gavilya is a simple game launcher for Windows."
/>
<link href="css/tailwind.css" rel="stylesheet" />
<link href="css/animations.css" rel="stylesheet" />
<style>
@font-face {
font-family: "Hauora";
src: url("fonts/Hauora-Regular.ttf") format("truetype");
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: "Hauora";
src: url("fonts/Hauora-Bold.ttf") format("truetype");
font-weight: 700;
}
@font-face {
font-family: "Hauora";
src: url("fonts/Hauora-ExtraBold.ttf") format("truetype");
font-weight: 900;
}
@font-face {
font-family: "Hauora";
src: url("fonts/Hauora-SemiBold.ttf") format("truetype");
font-weight: 600;
}
</style>
<script
data-ad-client="ca-pub-7416572564791547"
async
src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"
></script>
<script
src="https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.x.x/dist/alpine.min.js"
defer
></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-0EC2QLLXKJ"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-0EC2QLLXKJ");
</script>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<title>About | Gavilya</title>
<h1>Gavilya, a simple game launcher</h1>
</head>
<body
style="background-color: rgb(0, 0, 20); font-family: 'Hauora', sans-serif"
>
<header
id="header"
x-data="{ mobileMenuOpen : false }"
style="z-index: 1000"
class="backdrop-filter transition backdrop-blur-lg flex flex-wrap flex-row justify-between md:items-center md:space-x-4 sticky top-0 w-full py-6 px-6 text-white"
>
<a href="index" class="block">
<span class="sr-only">Léo Corporation</span>
<img
class="h-6 md:h-8"
src="img/Gavilya.png"
alt="Home logo"
title="Home"
/>
</a>
<button
style="background-color: rgb(20, 20, 40)"
@click="mobileMenuOpen = !mobileMenuOpen"
class="inline-block md:hidden w-8 h-8 text-white p-1"
>
<svg
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M3 5a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 10a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 15a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1z"
clip-rule="evenodd"
></path>
</svg>
</button>
<nav
class="absolute md:relative top-16 left-0 md:top-0 z-20 md:flex flex-col md:flex-row md:space-x-6 font-semibold w-full md:w-auto bg-black shadow-md rounded-lg md:rounded-none md:shadow-none md:bg-transparent p-6 pt-0 md:p-0"
:class="{ 'flex' : mobileMenuOpen , 'hidden' : !mobileMenuOpen}"
@click.away="mobileMenuOpen = false"
>
<a
class="font-bold bg-gradient-to-r hover:from-purple-600 hover:to-purple-700 rounded-xl px-5 py-3"
href="index"
>Home</a
>
<a
class="rounded-xl bg-gradient-to-r hover:from-purple-600 hover:to-purple-700 px-5 py-3 transition"
href="download"
>Download</a
>
<a
class="rounded-xl bg-gradient-to-r hover:from-purple-600 hover:to-purple-700 px-5 py-3 transition"
href="screenshots"
>Screenshots</a
>
<a
class="rounded-xl bg-gradient-to-r hover:from-purple-600 hover:to-purple-700 px-5 py-3 transition"
href="themes"
>Themes</a
>
<a
class="rounded-xl bg-gradient-to-r from-purple-600 to-purple-700 px-5 py-3 transition"
href="#"
>About</a
>
</nav>
</header>
<div class="m-8 mb-24">
<div
id="content"
class="text-white text-center m-10 items-center h-96 flex flex-col"
>
<img
alt="Image"
src="img/Gavilya.png"
style="height: 150px"
class="slideFromRight"
/>
<h1 class="fadeIn text-3xl font-bold">Gavilya</h1>
<p class="fadeIn delay-1">
Gavilya is a simple game launcher created by
<a href="https://leocorporation.dev/">Léo Corporation</a>. It's goal
is to unite all your games on your computer in the same place.
</p>
<div class="flex sm:flex-row flex-col justify-center items-center">
<a
class="slideInUp text-center sm:mr-6 mt-6 font-bold bg-gradient-to-b from-blue-600 to-blue-700 rounded-xl px-5 py-3 hover:from-blue-700 hover:to-blue-800"
href="https://bit.ly/Gavilya"
>Download Gavilya</a
>
<a
class="slideInUp delay-1 text-center mt-6 font-bold bg-gray-800 rounded-xl px-5 py-3 hover:bg-gray-700 transition"
href="https://bit.ly/Gavilya"
>See screenshots</a
>
</div>
</div>
</div>
<footer
class="grid grid-cols-1 sm:grid-cols-2 p-16 bg-gray-900 text-gray-400"
>
<div class="flex flex-col">
<h3 class="font-bold mb-5">ABOUT</h3>
<p id="copyright">© Léo Corporation</p>
<a href="https://peyronnet.group/privacy" class="hover:underline"
>Privacy Policy</a
>
<a href="https://status.peyronnet.group" class="hover:underline"
>Status</a
>
</div>
<div id="social-networks" class="flex flex-col mt-4 sm:mt-0">
<h3 class="font-bold mb-5">SOCIAL</h3>
<div class="flex">
<a
title="GitHub"
target="_blank"
rel="noopener noreferrer"
href="https://github.com/Leo-Corporation/"
>
<img
alt="Image"
class="h-6 mr-5"
src="https://img.icons8.com/fluent-systems-filled/48/9ca3af/github.png"
/>
</a>
<a
title="Twitter"
target="_blank"
rel="noopener noreferrer"
href="https://twitter.com/LeoCorpNews"
>
<img
alt="Image"
class="h-6 mr-5"
src="https://img.icons8.com/fluent-systems-filled/48/9ca3af/twitter.png"
/>
</a>
<a
title="YouTube"
target="_blank"
rel="noopener noreferrer"
href="https://www.youtube.com/@PeyronnetGroup"
>
<img
alt="Image"
class="h-6 mr-5"
src="https://img.icons8.com/fluency-systems-filled/48/9ca3af/youtube-play.png"
/>
</a>
<a
title="Instagram"
target="_blank"
rel="noopener noreferrer"
href="https://www.instagram.com/leocorporation_/"
>
<img
alt="Image"
class="h-6 mr-5"
src="https://img.icons8.com/fluency-systems-filled/48/9ca3af/instagram-new.png"
/>
</a>
<a
title="Facebook"
target="_blank"
rel="noopener noreferrer"
href="https://www.facebook.com/LeoCorporationSoftwares/"
>
<img
alt="Image"
class="h-6 mr-5"
src="https://img.icons8.com/fluency-systems-filled/48/9ca3af/facebook-new.png"
/>
</a>
</div>
</div>
</footer>
<script src="scripts/copyright.js"></script>
<script src="scripts/scroll.js"></script>
</body>
</html>