-
Notifications
You must be signed in to change notification settings - Fork 12
/
index.html
75 lines (67 loc) · 3.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-FWT2H26NGJ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-FWT2H26NGJ');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>amine</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap" rel="stylesheet">
<script async src="https://tally.so/widgets/embed.js"></script>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
'amine-bg': '#090a24',
'amine-text': '#DCF2F1',
'amine-input': '#365486',
},
fontFamily: {
'custom': ['Poppins', 'sans-serif'],
}
}
}
}
</script>
</head>
<body class="bg-amine-bg text-amine-text font-custom flex items-center justify-center min-h-screen">
<div class="container mx-auto px-4 py-8 max-w-2xl">
<header class="text-center mb-8">
<h1 class="text-7xl mb-6">amine</h1>
<p class="text-xl">Next Gen Distraction Remover<br>
It <em><b>forces</b></em> you to focus</p>
</header>
<main>
<section class="text-center mb-8">
<p class="mb-4 text-lg">
Stop Switching Tabs while you should be working.<br> <i>Get a life</i>, bruh.
</p>
<div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-6">
<a href="https://github.com/datavorous/amine/releases/tag/v0.0.1" class="bg-amine-input text-amine-text px-4 py-1 rounded-lg inline-flex items-center justify-center font-semibold transition duration-300 hover:bg-opacity-80">
Windows x64
</a>
<a href="#tally-open=nGLGJO&tally-emoji-text=👋&tally-emoji-animation=wave&tally-auto-close=3000" class="bg-amine-input text-amine-text px-4 py-1 rounded-lg inline-flex items-center justify-center font-semibold transition duration-300 hover:bg-opacity-80">
Request Feature
</a>
<a href="https://github.com/datavorous/amine" class="bg-amine-input border-amine-text text-amine-text px-8 py-4 rounded-lg inline-flex items-center justify-center font-semibold transition duration-300 hover:bg-opacity-80">
Github
</a>
</div>
</section>
</main>
<footer class="text-center text-sm mt-16">
<p>datavorous © 2024</p>
</footer>
</div>
</body>
</html>