-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (60 loc) · 2.49 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
73
74
<!doctype html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Rocketseat Discover</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="preconnect" href="https://unpkg.com" />
<link rel="preconnect" href="https://github.com" />
<link rel="preconnect" href="https://picsum.photos" />
<link rel="preconnect" href="https://cdn.jsdelivr.net" />
<link rel="preload" href="https://picsum.photos/1024/512?blur" as="image" type="image/jpg" />
<link rel="preload" href="https://unpkg.com/tailwindcss@3.4.4/src/css/preflight.css" as="style" />
<link rel="preload" href="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js" as="script" />
<link rel="stylesheet" href="https://unpkg.com/tailwindcss@3.4.4/src/css/preflight.css" />
<script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="styles.css" />
</head>
<body x-data="{ dark: true }" :class="!dark ? 'light' : ''">
<main>
<header>
<img class="avatar" src="https://github.com/dreisss.png" />
<p>@dreisss</p>
</header>
<div>
<label class="switch">
<div class="track"></div>
<div class="handle" x-show="dark">
<i data-lucide="moon-star"></i>
</div>
<div class="handle light" x-show="!dark">
<i data-lucide="sun"></i>
</div>
<input x-data x-model="dark" type="checkbox" />
</label>
</div>
<section id="buttons">
<a class="btn" href="https://github.com/dxdotdev/arc-ui">Arc UI to Firefox</a>
<a class="btn" href="https://github.com/dreisss/dotfiles">dotfiles</a>
</section>
<section id="socials">
<a class="social" href="https://github.com/dreisss" target="_blank">
<i data-lucide="github"></i>
</a>
<a class="social" href="https://www.instagram.com/dreisss__" target="_blank">
<i data-lucide="instagram"></i>
</a>
</section>
<footer>
<p>Feito com ♥ por dreisss</p>
</footer>
</main>
</body>
<script src="https://unpkg.com/lucide@latest"></script>
<script>
lucide.createIcons();
</script>
</html>