-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (69 loc) · 3.87 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
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@latest/dist/tailwind.min.css" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<title>Star Wars API</title>
</head>
<body>
<header class="sw-logo mb-6 text-center">
<img src="assets/Star_Wars.svg" alt="Star Wars" class="svg-img">
</header>
<div class="container max-w-screen-xl mx-auto my-6 px-10 flex flex-col items-center justify-center">
<div id="characters-section" class="mb-12">
<h2 class="text-2xl text-white font-bold mb-4 text-center">Personagens</h2>
<div class="flex items-center justify-center">
<button id="prev-characters" class="scroll-btn">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-white" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 19l-7-7 7-7" />
</svg>
</button>
<div id="characters-container" class="card-container"></div>
<button id="next-characters" class="scroll-btn">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-white" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7" />
</svg>
</button>
</div>
</div>
<div id="planets-section" class="mb-12">
<h1 class="text-2xl text-white font-bold mb-4 text-center">Planetas</h1>
<div class="flex items-center justify-center">
<button id="prev-planets" class="scroll-btn">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-white" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 19l-7-7 7-7" />
</svg>
</button>
<div id="planets-container" class="card-container"></div>
<button id="next-planets" class="scroll-btn">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-white" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7" />
</svg>
</button>
</div>
</div>
<div id="starships-section" class="mb-12">
<h1 class="text-2xl text-white font-bold mb-4 text-center">Naves</h1>
<div class="flex items-center justify-center">
<button id="prev-starships" class="scroll-btn">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-white" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 19l-7-7 7-7" />
</svg>
</button>
<div id="starships-container" class="card-container"></div>
<button id="next-starships" class="scroll-btn">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-white" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7" />
</svg>
</button>
</div>
</div>
</div>
<script src="script.js"></script>
<footer class="text-center py-4 -gray-200">
<p class="text-gray-600">© 2024 Lucasfilm Ltd. All rights reserved.</p>
</footer>
</body>
</html>