-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
94 lines (90 loc) · 5.4 KB
/
index.html
File metadata and controls
94 lines (90 loc) · 5.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Code Suite</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Lightning-fast and Powerful Code Collaborator">
<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=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<script src="https://cdn.tailwindcss.com"></script>
<link rel="icon" type="image/png" sizes="16x16" href="/src/flowbite.png">
<script src="assets/js/main.js?id=29373"></script>
<link rel="stylesheet" type='text/css' href="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/devicon.min.css" />
</head>
<style>
body {
font-family: "Poppins", serif;
}
</style>
<body class="antialiased bg-body text-body font-body h-screen">
<div class="relative bg-coolGray-50 overflow-hidden w-[100vw] h-[100vh]"
style="background-image: linear-gradient(to right, #6a11cb, #2575fc);">
<nav class="flex top-0 left-0 right-0 z-50 fixed justify-between p-6 px-4 container mx-auto w-full">
<div class="flex justify-between items-center w-full">
<a href="/">
<ul class="flex flex-row space-x-4 items-center">
<li>
<img class="h-10" src="./src/flowbite.png" alt=""/>
</li>
<li>
<p class="text-2xl text-white">Code Suite</p>
</li>
</ul>
</a>
<div class="flex flex-row items-center justify-end">
<ul class="flex flex-row items-center space-x-8">
<li>
<a href="/docs" class="text-white font-medium hover:underline">Docs</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="flex items-center justify-center h-full">
<div class="container px-4 mx-auto">
<div class="flex flex-wrap xl:items-center -mx-4">
<div class="w-full md:w-2/5 px-4 mb-16 md:mb-0">
<h1 class="mb-6 text-4xl leading-tight font-bold tracking-tight text-white text-center">Lightning-fast <br>and Powerful <br>Code Collaborator</h1>
<p class="mb-8 text-md text-white font-medium text-center">Free, Fast and Secure Software for your collaboration</p>
<div class="flex w-full gap-4">
<!-- Desktop Options -->
<a class="hidden md:flex cursor-pointer select-none flex-col items-center justify-center rounded-lg border border-blue-400 border-2 bg-transparent hover:bg-blue-400 duration-300" style="height: 11.25rem; width: 18.75rem;" href="https://github.com/Code-Suite/code-suite.github.io/releases/download/1.0.0/code-suite-1.0.0-setup.exe" download>
<i class="rounded-lg border p-2 devicon-windows8-original border-blue-400 text-white border-2" style="margin-bottom: 10px;"></i>
<div class="font-bold text-white">Windows</div>
</a>
<a class="hidden md:flex cursor-pointer select-none flex-col items-center justify-center rounded-lg border border-yellow-400 border-2" style="height: 11.25rem; width: 18.75rem;">
<i class="rounded-lg border p-2 devicon-linux-plain border-yellow-400 text-white border-2" style="margin-bottom: 10px;"></i>
<div class="font-bold text-white">Linux</div>
<p class="text-xs text-slate-400">Coming Soon</p>
</a>
<a class="hidden md:flex cursor-pointer select-none flex-col items-center justify-center rounded-lg border border-purple-400 border-2" style="height: 11.25rem; width: 18.75rem;">
<i class="rounded-lg border p-2 devicon-apple-original border-purple-400 text-white border-2" style="margin-bottom: 10px;"></i>
<div class="font-bold text-white">MacOS</div>
<p class="text-xs text-slate-400">Coming Soon</p>
</a>
<!-- Mobile Options -->
<a class="flex md:hidden cursor-pointer select-none flex-col items-center justify-center rounded-lg border border-blue-400 border-2 bg-transparent hover:bg-blue-400 duration-300" style="height: 11.25rem; width: 18.75rem;">
<i class="rounded-lg border p-2 devicon-apple-original border-blue-400 text-white border-2" style="margin-bottom: 10px;"></i>
<div class="font-bold text-white">iOS</div>
<p class="text-xs text-slate-400">Coming Soon</p>
</a>
<a class="flex md:hidden cursor-pointer select-none flex-col items-center justify-center rounded-lg border border-yellow-400 border-2" style="height: 11.25rem; width: 18.75rem;">
<i class="rounded-lg border p-2 devicon-android-plain border-yellow-400 text-white border-2" style="margin-bottom: 10px;"></i>
<div class="font-bold text-white">Android</div>
<p class="text-xs text-slate-400">Coming Soon</p>
</a>
</div>
</div>
<div class="w-full md:w-3/5 px-4">
<div class="relative mx-auto md:mr-0 mx-w-max">
<img src="./src/sample.png" alt="" class="relative rounded-7xl">
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>