-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
95 lines (91 loc) · 2.84 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Crystal Dev</title>
<!-- Include Tailwind CSS from CDN -->
<link
href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.15/dist/tailwind.min.css"
rel="stylesheet"
/>
<link
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.0/css/all.min.css"
rel="stylesheet"
/>
<style>
@keyframes fadeInDown {
0% {
opacity: 0;
transform: translateY(-20px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
.animate-fadeInDown {
animation: fadeInDown 1s ease;
}
</style>
<!-- Matomo -->
<script>
var _paq = window._paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="https://rodrigoantinarelli.matomo.cloud/";
_paq.push(['setTrackerUrl', u+'matomo.php']);
_paq.push(['setSiteId', '1']);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.async=true; g.src='//cdn.matomo.cloud/rodrigoantinarelli.matomo.cloud/matomo.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Matomo Code -->
</head>
<body
class="bg-gray-800 flex items-center justify-center h-screen animate-fadeInDown"
>
<div class="text-center">
<img src="crystal.png" alt="Crystal Dev Logo" class="mx-auto" />
<h1 class="text-xl font-thin text-white">
Yo! We're
<strong
class="font-semibold text-pink-500 text-3xl sm:text-5xl tracking-tighter font-mono"
>CrystalDev</strong
>, b*tch!
</h1>
<div>
<a
href="https://github.com/crystaldevorg"
target="_blank"
rel="noopener noreferrer"
class="text-white hover:text-blue-400 transition duration-300"
>
<i class="fab fa-github text-5xl mt-10"></i>
</a>
<p
class="font-mono text-white text-sm mt-10 border-gray-600 border p-4"
>
by
<a
href="https://github.com/dielduarte"
target="_blank"
rel="noopener noreferrer"
class="text-yellow-500 hover:text-orange-400 transition duration-300 font-bold"
>@dielduarte</a
>
and
<a
href="https://github.com/rodrigoea"
target="_blank"
rel="noopener noreferrer"
class="text-yellow-500 hover:text-orange-400 transition duration-300 font-bold"
>@rodrigoea</a
>
</p>
</div>
</div>
</body>
</html>