-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
112 lines (102 loc) · 3.49 KB
/
index.html
File metadata and controls
112 lines (102 loc) · 3.49 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
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="GigTracker: catálogo interativo de bandas já assistidas e desejadas ao vivo. Explore por nome, estilo e local."
/>
<title>GigTracker</title>
<link rel="shortcut icon" href="imagens/favicon.ico" type="image/x-icon" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header class="main-header">
<h1 class="site-title">GigTracker</h1>
<p class="site-description">
Minha coleção de shows inesquecíveis. Explore bandas, filtrando por
estilo e local. Descubra novas músicas e acesse Spotify e YouTube
diretamente.
</p>
<!-- Alterar tema escuro/claro -->
<button id="toggle-tema">🌙 Alternar Tema</button>
<!-- Filtros e botões -->
<div id="filtros">
<label for="ordenar">Ordenar por:</label>
<select id="ordenar">
<option value="nome">Nome</option>
<option value="estilo">Estilo Musical</option>
<option value="local">Local</option>
</select>
<select id="direcao">
<option value="asc">A–Z</option>
<option value="desc">Z–A</option>
</select>
<input type="text" id="busca" placeholder="Buscar banda..." />
<button id="limpar-busca" aria-label="Limpar busca">Limpar</button>
<select id="filtro-estilo">
<option value="">Todos os estilos</option>
</select>
<select id="filtro-local">
<option value="">Todos os locais</option>
</select>
</div>
<nav class="nav-principal">
<a href="wishlist.html">👀 Ir para bandas que quero ver ao vivo</a>
</nav>
</header>
<main class="band-grid" id="band-list">
<section id="categorias">
<!-- Categorias por estilo e local serão inseridas via JavaScript -->
</section>
<section id="bandas-container">
<!-- Cards serão inseridos aqui via JavaScript -->
</section>
</main>
<!--Últimas faixas tocadas no Last.fm-->
<section id="lastfm">
<h2>Agora tocando por aqui 🎧</h2>
<br />
<p>Clique e seja direcionado para meu Last.fm!</p>
<br />
<a href="https://www.last.fm/user/thisisdefeat" target="_blank">
<img
src="https://lastfm-recently-played.vercel.app/api?user=thisisdefeat"
width="350"
alt="Últimas faixas ouvidas no Last.fm"
/></a>
</section>
<footer>
<p>© 2025 – Feito com 🎸 e ☕ por <strong>Piter Gomes</strong></p>
<p>
<a
href="https://github.com/pitercoding"
target="_blank"
aria-label="GitHub"
class="github"
><i class="fa-brands fa-github"></i
></a>
<a
href="https://www.linkedin.com/in/piter-gomes-4a39281a1/"
target="_blank"
aria-label="LinkedIn"
class="linkedin"
><i class="fa-brands fa-linkedin"></i
></a>
<a
href="https://www.last.fm/user/thisisdefeat"
target="_blank"
aria-label="Last.fm"
class="lastfm"
><i class="fa-brands fa-lastfm"></i
></a>
</p>
</footer>
<script defer src="script.js"></script>
</body>
</html>