-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathindex.html
45 lines (41 loc) · 1.21 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
<!doctype html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/webp" href="/logo.webp" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="La hackafor es un evento de programación hecha para desarrolladores. Participa solo/a o en equipo y gana premios creando las aplicaciones del futuro."
/>
<meta name="author" content="Afordin" />
<title>Hackafor 2024</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<noscript>
<style>
body {
background-color: #0f111a;
min-height: 100svh;
display: grid;
place-content: center;
color: #f5f5f5;
}
.main {
text-align: center;
border-radius: 0.7rem;
padding: 2.5rem;
}
.paragraph {
font-size: clamp(2.7994rem, 1.8553rem + 4.7202vi, 6.1035rem);
text-align: center;
}
</style>
<main class="main">
<p class="paragraph">Lo siento, necesitas activar JavaScript para ver la página</p>
</main>
</noscript>
</body>
</html>