-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
83 lines (71 loc) · 3.87 KB
/
index.html
File metadata and controls
83 lines (71 loc) · 3.87 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<!-- SEO -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="Gamefetch é um agregador de fontes de jogos pré-instalados." />
<meta name="author" content="Gamefetch" />
<meta name="robots" content="index, follow" />
<link rel="canonical" href="https://gamefetch.netlify.app" />
<title>Gamefetch – Jogos pré-instalados</title>
<!-- Redes -->
<meta property="og:title" content="Gamefetch – Jogos pré-instalados" />
<meta property="og:description" content="Gamefetch é um agregador de fontes de jogos pré-instalados." />
<meta property="og:image" content="https://gamefetch.netlify.app/demo.png" />
<meta property="og:url" content="https://gamefetch.netlify.app" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="pt_BR" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Gamefetch – Jogos pré-instalados" />
<meta name="twitter:description" content="Gamefetch é um agregador de fontes de jogos pré-instalados." />
<meta name="twitter:image" content="https://gamefetch.netlify.app/demo.png" />
<!-- Favicon -->
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="48x48" href="/favicon-48x48.png" />
<link rel="icon" type="image/png" sizes="96x96" href="/favicon-96x96.png" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="manifest" href="/site.webmanifest" />
<meta name="theme-color" content="#000000" />
<!-- CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" />
<link rel="stylesheet" href="assets/css/style.css" />
<link href="https://fonts.googleapis.com/css2?family=Audiowide&display=swap" rel="stylesheet">
<!-- JS -->
<script defer src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script defer src="assets/js/config.js"></script>
<script defer src="assets/js/search.js"></script>
<script defer src="assets/js/particle.js"></script>
</head>
<body class="dark-mode d-flex flex-column min-vh-100">
<div id="particles-js" style="position: fixed; width: 100%; height: 100%; z-index: -1;"></div>
<header class="container d-flex flex-column align-items-center mt-3 py-4">
<h1 class="text-center text-uppercase text-success my-3">Gamefetch</h1>
<h2 class="text-center h6 mb-3">Jogos <span class="neon-underline h6">pré-instalados.</span></h2>
<input type="text" id="searchInput" placeholder="Digite o nome do jogo"
class="form-control w-75 mb-3 shadow-sm px-4 py-2" />
<button class="btn-fill-up w-30 position-relative overflow-hidden" aria-label="Buscar" id="searchBtn">
<span class="btn-text position-relative">Buscar</span>
<div class="filled"></div>
</button>
</header>
<main class="container flex-grow-1 mb-3">
<ul id="results" class="list-group list-group-flush"></ul>
</main>
<footer class="bg-dark text-light py-4 mt-auto border-top border-secondary">
<div class="container text-center">
<p class="mb-2 text-white-50 small">
Recomendamos o uso do
<a href="https://ublockorigin.com/" target="_blank" class="text-decoration-none text-success">
uBlock Origin.
</a>
</p>
<p class="text-muted small mb-0 text-white-50">
Indexamos exclusivamente links públicos de terceiros.
</p>
</div>
</footer>
</body>
</html>