-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (61 loc) · 2.11 KB
/
index.html
File metadata and controls
66 lines (61 loc) · 2.11 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
<!doctype html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<title>Mentori - Aprovação em Concursos</title>
<!-- PWA Meta Tags -->
<meta
name="description"
content="Plataforma inteligente de estudos para concursos públicos. Questões reais, spaced repetition, gamificação e predição de nota."
/>
<meta name="theme-color" content="#8B5CF6" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta
name="apple-mobile-web-app-status-bar-style"
content="black-translucent"
/>
<meta name="apple-mobile-web-app-title" content="Mentori" />
<!-- Manifest -->
<link rel="manifest" href="/manifest.json" />
<!-- Icons -->
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/icons/icon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/icons/icon-16x16.png"
/>
<link rel="apple-touch-icon" href="/icons/icon-192x192.png" />
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=JetBrains+Mono:wght@300;400;500;600&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="/index.css" />
</head>
<body
class="bg-[#09090B] text-[#FAFAFA] antialiased selection:bg-[#00F0FF] selection:text-black relative min-h-screen"
>
<!-- Background Gradient (Subtle) -->
<div
class="fixed inset-0 overflow-hidden pointer-events-none bg-[radial-gradient(circle_at_50%_50%,rgba(18,18,22,1)_0%,rgba(9,9,11,1)_100%)]"
>
<div
class="absolute top-0 left-0 w-full h-px bg-gradient-to-r from-transparent via-[#00F0FF]/20 to-transparent"
></div>
</div>
<div id="root" class="relative z-10 h-screen"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>